Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 170 for applyTo (0.49 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	diffOptions := DiffOptions{
    		SetElementOrder: true,
    	}
    	patchMap, err := diffMaps(original, modified, schema, diffOptions)
    	if err != nil {
    		return nil, err
    	}
    
    	// Apply the preconditions to the patch, and return an error if any of them fail.
    	for _, fn := range fns {
    		if !fn(patchMap) {
    			return nil, mergepatch.NewErrPreconditionFailed(patchMap)
    		}
    	}
    
    	return patchMap, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

         */
        public BuildScriptBuilder conventionPluginSupport(@Nullable String comment) {
            Syntax syntax = syntaxFor(dsl);
            block.repositories.gradlePluginPortal("Use the plugin portal to apply community plugins in convention plugins.");
            syntax.configureConventionPlugin(comment, block.plugins, block.repositories);
            return this;
        }
    
        /**
         * Adds a plugin to be applied
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       * use the copy.
       *
       * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>, as documented at
       * {@link Predicate#apply}. Do not provide a predicate such as {@code
       * Predicates.instanceOf(ArrayList.class)}, which is inconsistent with equals. (See {@link
       * Iterables#filter(Iterable, Class)} for related functionality.)
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=Scale,result=Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=Scale,result=Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.1
    // +k8s:prerelease-lifecycle-gen:deprecated=1.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            boolean writable = Iterables.any(viewProperties, new Predicate<ModelProperty<?>>() {
                @Override
                public boolean apply(ModelProperty<?> viewProperty) {
                    return viewProperty.isWritable();
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            virtualEdges.add(edge);
            edge.markUsed();
            discoveredEdges.add(edge);
            edge.getSelector().use(false);
        }
    
    
        /**
         * Execute any dependency substitution rules that apply to this dependency.
         *
         * This may be better done as a decorator on ConfigurationMetadata.getDependencies()
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.9
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top