Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for overlap (0.29 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    		expected: []message{
    			{msg.InvalidWebhook, "MutatingWebhookConfiguration istio-sidecar-injector-missing-overlap"},
    			{msg.InvalidWebhook, "MutatingWebhookConfiguration istio-sidecar-injector-missing-overlap"},
    			{msg.InvalidWebhook, "MutatingWebhookConfiguration istio-sidecar-injector-overlap"},
    		},
    	},
    	{
    		name: "Route Rule no effect on Ingress",
    		inputFiles: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. cmd/handler-api.go

    	}
    
    	if cap(t.requestsPool) != apiRequestsMaxPerNode {
    		// Only replace if needed.
    		// Existing requests will use the previous limit,
    		// but new requests will use the new limit.
    		// There will be a short overlap window,
    		// but this shouldn't last long.
    		t.requestsPool = make(chan struct{}, apiRequestsMaxPerNode)
    	}
    	t.requestsDeadline = cfg.RequestsDeadline
    	listQuorum := cfg.ListQuorum
    	if listQuorum == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    	// prepare to create subprocesses. It isn't strictly necessary for the test,
    	// but helps to increase the repro rate by making it more likely that calls to
    	// syscall.StartProcess for the "hang" and "exit" goroutines overlap.
    	var ready sync.WaitGroup
    	ready.Add(nHangs + nExits)
    
    	for i := 0; i < nHangs; i++ {
    		go func() {
    			defer hangs.Done()
    
    			cmd := helperCommandContext(t, ctx, "pipetest")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. pkg/controller/job/success_policy_test.go

    				Rules: []batch.SuccessPolicyRule{{
    					SucceededIndexes: ptr.To("10-12,14-16"),
    				}},
    			},
    		},
    		"rules.succeededIndexes is specified; succeededIndexes didn't match rules; rules overlaps succeededIndexes at first": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{2, 4}, {6, 8}},
    			successPolicy: &batch.SuccessPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. cmd/bucket-replication-utils.go

    	return rs.ReplicaStatus == o.ReplicaStatus &&
    		rs.ReplicationStatusInternal == o.ReplicationStatusInternal &&
    		rs.VersionPurgeStatusInternal == o.VersionPurgeStatusInternal
    }
    
    // CompositeReplicationStatus returns overall replication status for the object version being replicated.
    func (rs *ReplicationState) CompositeReplicationStatus() (st replication.StatusType) {
    	switch {
    	case rs.ReplicationStatusInternal != "":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            and: 'conventions get properly applied'
            // check the conventions in the resolution results, they should be there, and it is independent of the DOM overlay
            def projectEvaluated = project.stepResults.values()[0] as EvaluationResult.Evaluated<AnalysisStepResult>
            projectEvaluated.stepResult.assignmentTrace.resolvedAssignments.entrySet().any {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/types.go

    	return &ImageStateSummary{
    		Size:     iss.Size,
    		NumNodes: iss.Nodes.Len(),
    	}
    }
    
    // NodeInfo is node level aggregated information.
    type NodeInfo struct {
    	// Overall node information.
    	node *v1.Node
    
    	// Pods running on the node.
    	Pods []*PodInfo
    
    	// The subset of pods with affinity.
    	PodsWithAffinity []*PodInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  8. internal/grid/manager.go

    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/pubsub"
    	"github.com/minio/mux"
    )
    
    const (
    	// apiVersion is a major version of the entire api.
    	// Bumping this should only be done when overall,
    	// incompatible changes are made, not when adding a new handler
    	// or changing an existing handler.
    	apiVersion = "v1"
    
    	// RoutePath is the remote path to connect to.
    	RoutePath = "/minio/grid/" + apiVersion
    )
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/os/signal/doc.go

    the non-Go startup code runs. If the non-Go startup code wishes to
    install its own signal handlers, it must take certain steps to keep Go
    working well. This section documents those steps and the overall
    effect changes to signal handler settings by the non-Go code can have
    on Go programs. In rare cases, the non-Go code may run before the Go
    code, in which case the next section also applies.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    			// type declarations that recur via parameter types, an extremely
    			// rare occurrence). An alternative implementation might use a
    			// "visited" map, but that is probably less efficient overall.
    			q := &ifacePair{xi, yi, p}
    			for p != nil {
    				if p.identical(q) {
    					return true // same pair was compared before
    				}
    				p = p.prev
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top