Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,243 for behaviors (0.19 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            return builder;
        }
    
        /**
         * Output: ${behaviour}. This behavior is deprecated.
         */
        @CheckReturnValue
        public static DeprecationMessageBuilder.DeprecateBehaviour deprecateBehaviour(String behaviour) {
            return new DeprecationMessageBuilder.DeprecateBehaviour(behaviour);
        }
    
        /**
         * Output: ${behaviour}. This behavior is deprecated. ${advice}
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4LoggingOutputCaptureIntegrationTest.groovy

                    "Test class OkTest -> after class out\n" +
                    "Test class OkTest -> after class err\n"
                )
    
                // This test covers current behaviour, not necessarily desired behaviour
    
                def xmlReport = new JUnitXmlTestExecutionResult(testDirectory)
                def classResult = xmlReport.testClass("OkTest")
                classResult.assertTestCaseStdout("ok", is(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.15.md

    - Introduced the flag `--ipvs-strict-arp` to configure stricter ARP sysctls, defaulting to false to preserve existing behaviors. This was enabled by default in 1.13.0, which impacted a few CNI plugins. ([#75295](https://github.com/kubernetes/kubernetes/pull/75295), [@lbernail](https://github.com/lbernail))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

            outputContains('[dep1-1.0.jar, dep2-1.0.jar]')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. releasenotes/notes/injector-selectors.yaml

        if they exist in a namespace without an `istio-injection` label set but have the `sidecar.istio.io/inject` label set on the pod.
        This is expected to be an uncommon case, so for most users there will be no behavioral changes to existing pods.
    
        If this behavior is not desired, it can be temporarily disabled with `--set values.sidecarInjectorWebhook.useLegacySelectors=true`.
        This option will be removed in future releases.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ForwardingBlockingDeque.java

     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingBlockingDeque} forward <b>indiscriminately</b>
     * to the methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

        public static class DeprecateBehaviour extends DeprecationMessageBuilder<DeprecateBehaviour> {
    
            private final String behaviour;
    
            public DeprecateBehaviour(String behaviour) {
                this.behaviour = behaviour;
            }
    
            /**
             * Output: This behavior is scheduled to be removed in Gradle 9.0.
             */
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    		WebhookRetryBackoff: DefaultAuthWebhookRetryBackoff(),
    		// This allows the kubelet to always get health and readiness without causing an authorization check.
    		// This field can be cleared by callers if they don't want this behavior.
    		AlwaysAllowPaths: []string{"/healthz", "/readyz", "/livez"},
    		// In an authorization call delegated to a kube-apiserver (the expected common-case), system:masters has full
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

     * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingBlockingDeque} forward <b>indiscriminately</b>
     * to the methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. releasenotes/notes/external-name-on.yaml

          If you are using `ExternalName` with Istio, please be advised of the following behavioral changes:
          * The `ports` field is no longer needed, matching Kubernetes behavior. If it is set, it will have no impact.
          * `VirtualServices` that route to an `ExternalName` service will no longer work unless the referenced service exists (as a Service or ServiceEntry).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top