Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,407 for _reasonx (0.5 sec)

  1. src/time/tick.go

    // tickers, even if they haven't been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    // (Code may of course still want to call Stop to stop the ticker for other reasons.)
    func NewTicker(d Duration) *Ticker {
    	if d <= 0 {
    		panic("non-positive interval for NewTicker")
    	}
    	// Give the channel a 1-element time buffer.
    	// If the client falls behind while reading, we drop ticks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// If not set, default to use "FieldValueInvalid".
    	// All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.
    	// +optional
    	Reason *FieldValueErrorReason `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// fieldPath represents the field path returned when the validation fails.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    		return framework.AsStatus(err)
    	}
    
    	podVolumes, reasons, err := pl.Binder.FindPodVolumes(logger, pod, state.podVolumeClaims, node)
    
    	if err != nil {
    		return framework.AsStatus(err)
    	}
    
    	if len(reasons) > 0 {
    		status := framework.NewStatus(framework.UnschedulableAndUnresolvable)
    		for _, reason := range reasons {
    			status.AppendReason(string(reason))
    		}
    		return status
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. gradle/verification-metadata.xml

                <sha256 value="46a9b4a311820b2c1841110affa286d65665ac9f8970fd9e9eb903c3d7aa436e" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
             <artifact name="android-studio-2023.3.1.18.mac.zip">
                <sha256 value="b0b5a2cec33e331c30727a06356c2724e7d9a8f5e78dc76cdb62eb6f2442c569" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
             <artifact name="android-studio-2023.3.1.18.mac_arm.zip">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    }
    
    // PodEligibleToPreemptOthers returns one bool and one string. The bool
    // indicates whether this pod should be considered for preempting other pods or
    // not. The string includes the reason if this pod isn't eligible.
    // There're several reasons:
    //  1. The pod has a preemptionPolicy of Never.
    //  2. The pod has already preempted other pods and the victims are in their graceful termination period.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"status":             "status of the condition, one of True, False, Unknown. Approved, Denied, and Failed conditions may not be \"False\" or \"Unknown\".",
    	"reason":             "reason indicates a brief reason for the request state",
    	"message":            "message contains a human readable message with details about the request state",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

          <trusted-artifacts>
             <trust group="dummy" name="artifact"/>
             <trust group="other" name="artifact" reason="sample trust reason"/>
             <trust group="fourth" name="artifact" version="with" file="file.jar" regex="true" reason="another sample reason"/>
             <trust group="third" name="artifact" version="with" file="file.jar" regex="true"/>
          </trusted-artifacts>
       </configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types.go

    	Status v1.ConditionStatus `json:"status" protobuf:"bytes,6,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
    	// reason indicates a brief reason for the request state
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,2,opt,name=reason"`
    	// message contains a human readable message with details about the request state
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            buildFile << """
                $content
            """
        }
    
        void declaredReplacementWithReason(String rep, String reason) {
            def d = new TestDependency(rep)
            buildFile << """
                dependencies.modules.module('${d.group}:${d.name}') { replacedBy '${d.pointsTo.group}:${d.pointsTo.name}', '$reason' }
            """
        }
    
        void resolvedFiles(String... files) {
            run("resolvedFiles")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipUpToDateStep.java

        }
    
        private UpToDateResult executeBecause(UnitOfWork work, ImmutableList<String> reasons, C context) {
            logExecutionReasons(reasons, work);
            AfterExecutionResult result = delegate.execute(work, context);
            return new UpToDateResult(result, reasons);
        }
    
        private static void logExecutionReasons(List<String> reasons, UnitOfWork work) {
            if (LOGGER.isInfoEnabled()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top