Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 559 for Selections (0.17 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor.go

    // It helps deal with the /healthz endpoint being set up prior to the LeaderElection.
    // This contains the code needed to act as an adaptor between the leader
    // election code the health check code. It allows us to provide health
    // status about the leader election. Most specifically about if the leader
    // has failed to renew without exiting the process. In that case we should
    // report not healthy and rely on the kubelet to take down the process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
    
                configurations.compileClasspath.resolutionStrategy.componentSelection.all { ComponentSelection selection ->
                   if (selection.candidate.module == 'bar' && selection.candidate.version in ['1.2', '1.1']) {
                       selection.reject("version \${selection.candidate.version} is bad")
                   }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server_test.go

          - name: "*"
        score:
          disabled:
          - name: "*"
    `, configKubeconfig)), os.FileMode(0600)); err != nil {
    		t.Fatal(err)
    	}
    
    	// empty leader-election config
    	emptyLeaderElectionConfig := filepath.Join(tmpDir, "empty-leader-election-config.yaml")
    	if err := os.WriteFile(emptyLeaderElectionConfig, []byte(fmt.Sprintf(`
    apiVersion: kubescheduler.config.k8s.io/v1
    kind: KubeSchedulerConfiguration
    clientConnection:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRules.java

                this.target = target;
            }
    
            @Override
            public boolean isSatisfiedBy(ComponentSelection selection) {
                return selection.getCandidate().getGroup().equals(target.getGroup()) && selection.getCandidate().getModule().equals(target.getName());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

            new DefaultDependencySubstitution(DependencyManagementTestUtil.componentSelectionDescriptorFactory(), componentSelector, artifacts)
        }
    
        def "can override target and selection reason for project"() {
            when:
            details.useTarget("org:foo:2.0", FORCED)
            details.useTarget("org:foo:3.0", SELECTED_BY_RULE)
    
            then:
            details.requested == componentSelector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            then:
            _ * componentSelectionRules.rules >> rules({ ComponentSelection selection ->
                if (selection.candidate.version != '1.3') {
                    selection.reject("rejected")
                }
            })
            1 * selectedComponentResult.getContentFilter() >> null
            1 * selectedComponentResult.notMatched(c.id, _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/priority_test.go

    			result:   schema.GroupVersionResource{Resource: "single-hit"},
    			err:      "delegateError",
    		},
    		{
    			name: "group selection + error",
    			delegate: fixedRESTMapper{resourcesFor: []schema.GroupVersionResource{
    				{Group: "one", Version: "a", Resource: "first"},
    				{Group: "two", Version: "b", Resource: "second"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 06 15:24:58 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  8. releasenotes/notes/38192.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 02:25:33 UTC 2022
    - 128 bytes
    - Viewed (0)
  9. 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)
  10. internal/bucket/replication/sourceselectioncriteria.go

    )
    
    // ReplicaModifications specifies if replica modification sync is enabled
    type ReplicaModifications struct {
    	Status Status `xml:"Status" json:"Status"`
    }
    
    // SourceSelectionCriteria - specifies additional source selection criteria in ReplicationConfiguration.
    type SourceSelectionCriteria struct {
    	ReplicaModifications ReplicaModifications `xml:"ReplicaModifications" json:"ReplicaModifications"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top