Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 202 for evacuatedX (0.53 sec)

  1. pkg/scheduler/extender_test.go

    			expectedResult: ScheduleResult{
    				SuggestedHost:  "node1",
    				EvaluatedNodes: 2,
    				FeasibleNodes:  1,
    			},
    			name: "test 10 - no scoring, extender filters configured, multiple feasible nodes are evaluated",
    		},
    		{
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                            project.getTasks().register("resolveProviders", ResolveProviderTask.class, task -> {
                                task.getInputFiles().set(
                                        // Mapped provider is evaluated differently when storing into the configuration cache.
                                        // This is similar to what AGP does when performing JdkImageTransform
                                        transformed.getElements().map(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

        }
    
        @ToBeFixedForIsolatedProjects(because = "evaluationDependsOn is not IP compatible, configuring projects from root, ")
        def "can depend on a rule-source task in a project which has already evaluated"() {
            given:
            createDirs("sub1", "sub2")
            settingsFile << 'include "sub1", "sub2"'
            buildFile << """
            ${ruleBasedTasks()}
    
            class Rules extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * <tr><td><code>dirs</code></td>
         *     <td>Specifies a list of rootDirs where to look for dependencies. These are evaluated as per {@link org.gradle.api.Project#files(Object...)}</td></tr>
         * </table>
         *
         * <p>Examples:</p>
         * <pre class='autoTested'>
         * repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/stmt.go

    	// argps collects the list of operands within the call expression
    	// that must be evaluated at the go/defer statement.
    	var argps []*ir.Node
    
    	var visit func(argp *ir.Node)
    	visit = func(argp *ir.Node) {
    		arg := *argp
    		if arg == nil {
    			return
    		}
    
    		// Recognize a few common expressions that can be evaluated within
    		// the wrapper, so we don't need to allocate space for them within
    		// the closure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

        }
    
        /**
         * Creates a signature artifact for the file returned by the {@code toSign} closure.
         *
         * <p>The closures will be “evaluated” on demand whenever the value is needed (e.g. at generation time)</p>
         *
         * @param toSign A closure that produces a File for the object to sign (non File return values will be used as the path to the file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    }
    
    var map_PodFailurePolicy = map[string]string{
    	"":      "PodFailurePolicy describes how failed pods influence the backoffLimit.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    		optionalOldSelfRule := ptr.Deref(rule.OptionalOldSelf, false)
    		if compiled.UsesOldSelf && oldObj == nil {
    			// transition rules are evaluated only if there is a comparable existing value
    			// But if the rule uses optional oldSelf and gate is enabled we allow
    			// the rule to be evaluated
    			if !utilfeature.DefaultFeatureGate.Enabled(features.CRDValidationRatcheting) {
    				continue
    			}
    
    			if !optionalOldSelfRule {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
      //
      // Required.
      optional string name = 1;
    
      // Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
      // CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // kubelet.conf file must not be created because it will be created and signed by the kubelet TLS bootstrap process.
    // When not using external CA mode, if a kubeconfig file already exists it is used only if evaluated equal,
    // otherwise an error is returned. For external CA mode, the creation of kubeconfig files is skipped.
    func CreateJoinControlPlaneKubeConfigFiles(outDir string, cfg *kubeadmapi.InitConfiguration) error {
    	var externalCA bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top