Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for applyTo (0.26 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

      // final fields.
      //
      // For simplicity the rest of this description will discuss Futures.catching since it is the
      // simplest instance, though very similar descriptions apply to many other classes in this file.
      //
      // In the constructor of AbstractCatchingFuture, the delegate future is assigned to a field
      // 'inputFuture'. That field is non-final and non-volatile. There are 2 places where the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

                @Override
                void accept(ProviderInternal<?> property) {
                    impl.apply(property as MapProperty<String, String>)
                }
    
                @Override
                ProviderInternal<?> apply(ProviderInternal<?> property) {
                    return impl.apply(property as MapProperty<String, String>)
                }
    
                @Override
                String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			return nil, gvk, err
    		}
    		decodingStrictErrs = decodeStrictErr.Errors()
    	}
    	var unknownFields []string
    	if u, ok := obj.(*unstructured.Unstructured); ok {
    		unknownFields, err = d.validator.apply(u)
    		if err != nil {
    			return nil, gvk, err
    		}
    	}
    	if d.validator.returnUnknownFieldPaths && (len(decodingStrictErrs) > 0 || len(unknownFields) > 0) {
    		for _, unknownField := range unknownFields {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public boolean matches(char c) {
          return predicate.apply(c);
        }
    
        @SuppressWarnings("deprecation") // intentional; deprecation is for callers primarily
        @Override
        public boolean apply(Character character) {
          return predicate.apply(checkNotNull(character));
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
      bool deletePods = 7;
    
      // The label key to apply to a broken pod when the controller is in labelPods mode.
      string brokenPodLabelKey = 8;
    
      // The label value to apply to a broken pod when the controller is in labelPods mode.
      string brokenPodLabelValue = 9;
    
      // The name of the init container to use for the repairPods mode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        doLast {
                            assert configurations._compileFreeDebug.collect { it.name } == []
                        }
                    }
                }
                project(':b') {
                    apply plugin: 'base'
                    configurations {
                        foo
                        bar
                        'default' {
                            canBeConsumed = false
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        public boolean matches(char c) {
          return predicate.apply(c);
        }
    
        @SuppressWarnings("deprecation") // intentional; deprecation is for callers primarily
        @Override
        public boolean apply(Character character) {
          return predicate.apply(checkNotNull(character));
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    // normalizeDesiredReplicasWithBehaviors takes the metrics desired replicas value and normalizes it:
    // 1. Apply the basic conditions (i.e. < maxReplicas, > minReplicas, etc...)
    // 2. Apply the scale up/down limits from the hpaSpec.Behaviors (i.e. add no more than 4 pods)
    // 3. Apply the constraints period (i.e. add no more than 4 pods per minute)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

      // final fields.
      //
      // For simplicity the rest of this description will discuss Futures.catching since it is the
      // simplest instance, though very similar descriptions apply to many other classes in this file.
      //
      // In the constructor of AbstractCatchingFuture, the delegate future is assigned to a field
      // 'inputFuture'. That field is non-final and non-volatile. There are 2 places where the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,groovy]
    ----
    if (GradleVersion.current() >= GradleVersion.version('8.0')) {
        apply from: "gradle8/cache-settings.gradle"
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .cache-settings.gradle.kts
    [source,kotlin]
    ----
    if (GradleVersion.current() >= GradleVersion.version("8.0")) {
        apply(from = "gradle8/cache-settings.gradle")
    }
    ----
    =====
    ====
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top