Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,036 for Configurer (0.29 sec)

  1. releasenotes/notes/sni-dnat-default.yaml

    kind: feature
    area: networking
    issue:
    - 27749
    releaseNotes:
    - |
      **Updated** the default installation of gateways to not configure clusters for `AUTO_PASSTHROUGH`, reducing memory costs.
    
    upgradeNotes:
    - title: "`AUTO_PASSTHROUGH` Gateway mode"
      content: |
        Previously, gateways were configured with multiple Envoy `cluster` configurations for each Service in the cluster, even those
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 09:47:40 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. samples/helloworld/gateway-api/README.md

    Confirm the sample is running using curl:
    
    ```bash
    for run in {1..10}; do curl http://$INGRESS_HOST/hello; done
    ```
    
    Since no version routing has been configured, you should see an equal split of traffic, about half handled by helloworld-v1 and the other half handled by helloworld-v2.
    
    ## Configure weight-based routing
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. releasenotes/notes/34118.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 33809
    releaseNotes:
      - |
        **Added** Auto mTLS support for workload level peer authentication. You no longer need to configure destination rule when servers are configured with workload level peer authentication policy. This can be disabled by setting ENABLE_AUTO_MTLS_CHECK_POLICIES to "false". 
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 19:02:56 UTC 2021
    - 480 bytes
    - Viewed (0)
  4. platforms/jvm/war/src/test/groovy/org/gradle/api/tasks/bundling/WarTest.groovy

        War war
    
        def setup() {
            war = createTask(War)
            configure(war)
        }
    
        @Override
        AbstractArchiveTask getArchiveTask() {
            war
        }
    
        def "test War"() {
            expect:
            war.archiveExtension.get() == War.WAR_EXTENSION
        }
    
        def "can configure WEB-INF CopySpec using an Action"() {
            given:
            war.webInf({ CopySpec spec ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 18:51:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

        }
    
        @Override
        protected void onApply(Project project) {
            project.getPluginManager().apply(EclipsePlugin.class);
    
            getLifecycleTask().configure(withDescription("Generates Eclipse wtp configuration files."));
            getCleanTask().configure(withDescription("Cleans Eclipse wtp configuration files."));
    
            project.getTasks().named(EclipsePlugin.ECLIPSE_TASK_NAME, dependsOn(getLifecycleTask()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            when:
            run()
    
            then:
            outputContains("> Configure project :buildSrc")
            result.groupedOutput.task(":buildSrc:classes").output.contains("classes of :classes")
    
            where:
            settings                     | display
            ""                           | "default root project name"
            "rootProject.name='someLib'" | "configured root project name"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

         * The given configure action is executed against the object before it is returned from the provider.
         *
         * @param name The object's name
         * @param type The object's type
         * @param configurationAction The action to use to configure the object.
         * @return A {@link Provider} that will return the object when queried. The object may be created and configured at this point, if not already.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        # The control plane has different scopes depending on component, but can configure default log level across all components
        # If empty, default scope and level will be used as configured in code
        logging:
          level: "default:info"
        omitSidecarInjectorConfigMap: true
        # Configure whether Operator manages webhook configurations. The current behavior
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

     */
    fun <T : Any> NamedDomainObjectCollection<out Any>.getByName(name: String, type: KClass<T>, configure: T.() -> Unit): T =
        getByName(name, type).also(configure)
    
    
    /**
     * Locates an object by name and casts it to the expected type [T] then configures it.
     *
     * If an object with the given [name] is not found, [UnknownDomainObjectException] is thrown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/README.md

    ### 6. Configure Grafana
    
    After Prometheus is configured, you can use Grafana to visualize MinIO metrics. Refer the [document here to setup Grafana with MinIO prometheus metrics](https://github.com/minio/minio/blob/master/docs/metrics/prometheus/grafana/README.md).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top