Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 256 for Selections (0.14 sec)

  1. pkg/apis/core/v1/helper/helpers.go

    	selector := labels.NewSelector()
    	var op selection.Operator
    	switch ssr.Operator {
    	case v1.ScopeSelectorOpIn:
    		op = selection.In
    	case v1.ScopeSelectorOpNotIn:
    		op = selection.NotIn
    	case v1.ScopeSelectorOpExists:
    		op = selection.Exists
    	case v1.ScopeSelectorOpDoesNotExist:
    		op = selection.DoesNotExist
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    */
    
    // Package leaderelection implements leader election of a set of endpoints.
    // It uses an annotation in the endpoints object to store the record of the
    // election state. This implementation does not guarantee that only one
    // client is acting as a leader (a.k.a. fencing).
    //
    // A client only acts on timestamps captured locally to infer the state of the
    // leader election. The client does not consider timestamps in the leader
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/options/options.go

    		o.ApplyDeprecated()
    		o.ApplyLeaderElectionTo(o.ComponentConfig)
    		c.ComponentConfig = *o.ComponentConfig
    	} else {
    		cfg, err := LoadConfigFromFile(logger, o.ConfigFile)
    		if err != nil {
    			return err
    		}
    		// If the --config arg is specified, honor the leader election CLI args only.
    		o.ApplyLeaderElectionTo(cfg)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                }
            }
    
            where:
            target << ['maven', 'maven-gradle', 'ivy-gradle']
        }
    
        def "explicit configuration selection in ivy modules is supported if targeting a ivy module"() {
            given:
            // use a different name if selection is supported to not follow the default expectations defined in leaksRuntime()
            String targetRepoName = "ivy-select"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

            ComponentSelectionInternal selection = new DefaultComponentSelection(candidateIdentifier, metadataProvider);
            rulesProcessor.apply(selection, rules, metadataProvider);
            if (selection.isRejected()) {
                return new RejectedByRuleVersion(candidateIdentifier, selection.getRejectionReason());
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    Examples of variants each Java components typically offers are _api_ and _runtime_ variants.
    Others examples are JDK8 and JDK11 variants.
    For more information, see the section on <<variant_model.adoc#understanding-variant-selection,variant selection>>.
    
    [[sub:terminology_attribute]]
    == Variant Attribute
    
    Attributes are used to identify and select <<#sub:terminology_variant,variants>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    type EgressSelectorConfiguration struct {
    	metav1.TypeMeta
    
    	// EgressSelections contains a list of egress selection client configurations
    	EgressSelections []EgressSelection
    }
    
    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// Name is the name of the egress selection.
    	// Currently supported values are "controlplane", "etcd" and "cluster"
    	Name string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSet.java

     * dependencies are executed. For this reason, we delay artifact selection until after this artifact
     * set is restored from the configuration cache. This differs from normal artifact variant selection
     * where we can perform selection before serialization.</p>
     *
     * <p>The tricky part that due to the artifactType registry, artifact variant selection depends on the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

            then:
            failure.assertHasCause("Could not resolve org:transitive:1.+: Resolution strategy disallows usage of dynamic versions")
        }
    
        def "fails if a transitive dynamic selector participates in selection"() {
            buildFile << """
                dependencies {
                    conf 'org:test:1.0'
                    conf 'org:testB:1.0'
                }
            """
    
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

       SELECTED_BY_RULE : fix comes from component selection rule
       CONSTRAINT : ${useReason?'This reason comes from a constraint':'constraint'}
    """)
            where:
            useReason << [true, false]
        }
    
        @ToBeFixedForConfigurationCache(because = "task exercises the resolution result API")
        def "direct dependency reasons are not mis-showing up as a separate REQUESTED and do not overwrite selection by rule"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
Back to top