Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for reasons (0.19 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	return res
    }
    
    // reasonNames pretty-prints a list of reasons with variable names in
    // case of a test failure because that is easier to read than the full
    // strings.
    func reasonNames(reasons ConflictReasons) string {
    	var varNames []string
    	for _, reason := range reasons {
    		switch reason {
    		case ErrReasonBindConflict:
    			varNames = append(varNames, "ErrReasonBindConflict")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
            return context.get(key);
        }
    
        /**
         * Sets the project's class realm. <strong>Warning:</strong> This is an internal utility method that is only public
         * for technical reasons, it is not part of the public API. In particular, this method can be changed or deleted
         * without prior notice and must not be used by plugins.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    			result = r
    		}
    
    		reasons = append(reasons, s.Reasons()...)
    		// Record the first failed plugin unless we proved that
    		// the latter is more relevant.
    		if len(rejectorPlugin) == 0 {
    			rejectorPlugin = pl.Name()
    		}
    	}
    
    	return result, framework.NewStatus(framework.Unschedulable, reasons...).WithPlugin(rejectorPlugin)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    type ReasonStats map[TriggerReason]int
    
    func NewReasonStats(reasons ...TriggerReason) ReasonStats {
    	ret := make(ReasonStats)
    	for _, reason := range reasons {
    		ret.Add(reason)
    	}
    	return ret
    }
    
    func (r ReasonStats) Add(reason TriggerReason) {
    	r[reason]++
    }
    
    func (r ReasonStats) Merge(other ReasonStats) {
    	for reason, count := range other {
    		r[reason] += count
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			// As we cannot compare two errors directly due to miss the equal method for how to compare two errors, so just need to compare the reasons.
    			if gotStatus.Code() == framework.Error {
    				if diff := cmp.Diff(tt.wantStatus.Reasons(), gotStatus.Reasons()); diff != "" {
    					t.Errorf("Unexpected status (-want, +got):\n%s", diff)
    				}
    			} else {
    				if diff := cmp.Diff(tt.wantStatus, gotStatus); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    }
    
    // statusPending ensures that there is a log message associated with the
    // line where the status originated.
    func statusPending(logger klog.Logger, reason string, kv ...interface{}) *framework.Status {
    	if loggerV := logger.V(5); loggerV.Enabled() {
    		helper, loggerV := loggerV.WithCallStackHelper()
    		helper()
    		kv = append(kv, "reason", reason)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	return proxier, nil
    }
    
    // internal struct for string service information
    type servicePortInfo struct {
    	*proxy.BaseServicePortInfo
    	// The following fields are computed and stored for performance reasons.
    	nameString             string
    	clusterPolicyChainName string
    	localPolicyChainName   string
    	externalChainName      string
    	firewallChainName      string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    // has not been met.
    //
    // The goals are updated after each GC.
    //
    // Synchronous scavenging happens for one of two reasons: if an allocation would
    // exceed the memory limit or whenever the heap grows in size, for some
    // definition of heap-growth. The intuition behind this second reason is that the
    // application had to grow the heap because existing fragments were not sufficiently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            @Override
            public boolean isTransitive() {
                return false;
            }
    
            @Override
            public DependencyMetadata withReason(String reason) {
                return makeNonTransitive(dependencyMetadata.withReason(reason));
            }
    
            @Override
            public String toString() {
                return "Non transitive dependency for external variant " + dependencyMetadata;
            }
    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. pkg/proxy/iptables/proxier.go

    	}
    
    	return proxier, nil
    }
    
    // internal struct for string service information
    type servicePortInfo struct {
    	*proxy.BaseServicePortInfo
    	// The following fields are computed and stored for performance reasons.
    	nameString             string
    	clusterPolicyChainName utiliptables.Chain
    	localPolicyChainName   utiliptables.Chain
    	firewallChainName      utiliptables.Chain
    	externalChainName      utiliptables.Chain
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top