Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 613 for behaviors (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    image::file-collection-vs-file-tree.png[]
    
    NOTE: Although `FileTree` extends `FileCollection` (an is-a relationship), their behaviors differ.
    In other words, you can use a file tree wherever a file collection is required, but remember that a file collection is a flat list/set of files, while a file tree is a file and directory hierarchy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // .. segments or repeated slashes to an equivalent, cleaner URL.
    //
    // # Compatibility
    //
    // The pattern syntax and matching behavior of ServeMux changed significantly
    // in Go 1.22. To restore the old behavior, set the GODEBUG environment variable
    // to "httpmuxgo121=1". This setting is read once, at program startup; changes
    // during execution will be ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

    assert contacts("a") == "a"
    """
    
            expect:
            succeeds()
        }
    
        // Documents actual behaviour for backwards compatibility, not necessarily desired behaviour
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "Exercises IP incompatible behavior: Groovy method inheritance"
        )
        def "inherited convention method is preferred over property with closure value"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      public void shutdown() {
        synchronized (lock) {
          shutdown = true;
          if (runningTasks == 0) {
            lock.notifyAll();
          }
        }
      }
    
      // See newDirectExecutorService javadoc for unusual behavior of this method.
      @Override
      public List<Runnable> shutdownNow() {
        shutdown();
        return Collections.emptyList();
      }
    
      @Override
      public boolean isTerminated() {
        synchronized (lock) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      public void shutdown() {
        synchronized (lock) {
          shutdown = true;
          if (runningTasks == 0) {
            lock.notifyAll();
          }
        }
      }
    
      // See newDirectExecutorService javadoc for unusual behavior of this method.
      @Override
      public List<Runnable> shutdownNow() {
        shutdown();
        return Collections.emptyList();
      }
    
      @Override
      public boolean isTerminated() {
        synchronized (lock) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. RELEASE.md

        `LSTMStateTuple`. The new behavior leads to proper dropout behavior for
        LSTMs and stacked LSTMs. This bug fix follows recommendations from published
        literature, but is a behavioral change. State dropout behavior may be
        customized via the new `dropout_state_filter_visitor` argument.
    *   Removed `tf.contrib.training.python_input`. The same behavior, in a more
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - `force_delete_pods_total` and `force_delete_pod_errors_total` metrics count all pod deletion behaviors. ([#118480](https://github.com/kubernetes/kubernetes/pull/118480), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  10. pkg/apis/autoscaling/validation/validation_test.go

    				PeriodSeconds: 8,
    			}},
    		},
    	}}
    	for _, behavior := range successCases {
    		hpa := prepareHPAWithBehavior(behavior)
    		if errs := ValidateHorizontalPodAutoscaler(&hpa); len(errs) != 0 {
    			t.Errorf("expected success: %v", errs)
    		}
    	}
    	errorCases := []struct {
    		behavior autoscaling.HorizontalPodAutoscalerBehavior
    		msg      string
    	}{{
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top