Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,159 for reason2 (0.31 sec)

  1. src/cmd/trace/pprof.go

    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    		return reason == "network"
    	})
    }
    
    // computePprofBlock returns a computePprofFunc that generates blocking pprof-like profile
    // (time spent blocked on synchronization primitives).
    func computePprofBlock() computePprofFunc {
    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                }
            }
        }
    
        private static DefaultSection buildSelectionReasonSection(ComponentSelectionReason reason) {
            DefaultSection selectionReasons = new DefaultSection("Selection reasons");
            for (ComponentSelectionDescriptor entry : reason.getDescriptions()) {
                ComponentSelectionDescriptorInternal descriptor = (ComponentSelectionDescriptorInternal) entry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    }
    
    // GoSched emits a GoStop event with a GoSched reason.
    func (tl traceLocker) GoSched() {
    	tl.GoStop(traceGoStopGoSched)
    }
    
    // GoPreempt emits a GoStop event with a GoPreempted reason.
    func (tl traceLocker) GoPreempt() {
    	tl.GoStop(traceGoStopPreempted)
    }
    
    // GoStop emits a GoStop event with the provided reason.
    func (tl traceLocker) GoStop(reason traceGoStopReason) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

            private final String version;
            private final String reason;
    
            private RejectedByRuleReason(String version, @Nullable String reason) {
                this.version = version;
                this.reason = reason;
            }
    
            @Override
            public String getDisplayName() {
                return version + " by rule" + (reason != null ? " because " + reason : "");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// +optional
    	MessageExpression string
    	// reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule.
    	// The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule.
    	// The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/interface.go

    	return s.plugin
    }
    
    // Reasons returns reasons of the Status.
    func (s *Status) Reasons() []string {
    	if s.err != nil {
    		return append([]string{s.err.Error()}, s.reasons...)
    	}
    	return s.reasons
    }
    
    // AppendReason appends given reason to the Status.
    func (s *Status) AppendReason(reason string) {
    	s.reasons = append(s.reasons, reason)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

                return Violation.accept(member, "${rejection.getHumanExplanation()}. Reason for accepting this: <b>$acceptationReason</b>")
            } else if (member instanceof JApiMethod && UpgradedProperties.shouldAcceptForUpgradedProperty(member, rejection, context)) {
                seenApiChanges.add(change)
                return Violation.accept(member, "${rejection.getHumanExplanation()}. Reason for accepting this: <b>Upgraded property</b>")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	// +optional
    	Status v1.ConditionStatus `json:"status" protobuf:"bytes,6,opt,name=status,casttype=k8s.io/api/core/v1.ConditionStatus"`
    	// brief reason for the request state
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,2,opt,name=reason"`
    	// human readable message with details about the request state
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/controller.go

    		case <-stop:
    			return
    		}
    	}
    }
    
    func (c *Controller) readyForFailClose() bool {
    	if !c.dryRunOfInvalidConfigRejected {
    		if rejected, reason := c.isDryRunOfInvalidConfigRejected(); !rejected {
    			scope.Infof("Not ready to switch validation to fail-closed: %v", reason)
    			return false
    		}
    		scope.Info("Endpoint successfully rejected invalid config. Switching to fail-close.")
    		c.dryRunOfInvalidConfigRejected = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/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)
Back to top