Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,026 for Gleason (0.63 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

            )
    
            then:
            reason.category == CachingDisabledReasonCategory.NO_OUTPUTS_DECLARED
            reason.message == "No outputs declared"
        }
    
        def "no cacheIf() means no caching"() {
            when:
            def reason = determineNoCacheReason(
                [],
                [cacheableOutputProperty]
            )
    
            then:
            reason.category == CachingDisabledReasonCategory.NOT_CACHEABLE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.status.yaml.golden

        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DefaultComponentSelectionReasonTest.groovy

        def "requested only selection reason is expected"() {
            when:
            def reason = ComponentSelectionReasons.requested()
    
            then:
            reason.isExpected()
        }
    
        def "root only selection reason is expected"() {
            when:
            def reason = ComponentSelectionReasons.root()
    
            then:
            reason.isExpected()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/plugin/internal/InvalidPluginIdException.java

    public class InvalidPluginIdException extends GradleException {
    
        private final String reason;
    
        public InvalidPluginIdException(String pluginId, String reason) {
            super(String.format("plugin id '%s' is invalid: %s", pluginId, reason));
            this.reason = reason;
        }
    
        public String getReason() {
            return reason;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonStopEvent.java

            return timestamp.getTime() == stopEvent.timestamp.getTime()
                && (reason != null ? reason.equals(stopEvent.reason) : stopEvent.reason == null);
        }
    
        @Override
        public int hashCode() {
            int result = timestamp.hashCode();
            result = 31 * result + (reason != null ? reason.hashCode() : 0);
            return result;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mesh.status.yaml.golden

          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/multi-gateway.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. operator/pkg/metrics/utils.go

    		Increment()
    }
    
    // CountCRFetchFail increments the count of CR fetch failure
    // for a given name and the error status.
    func CountCRFetchFail(reason metav1.StatusReason) {
    	errorReason := string(reason)
    	if reason == metav1.StatusReasonUnknown {
    		errorReason = "unknown"
    	}
    	GetCRErrorTotal.
    		With(CRFetchErrorReasonLabel.Value(errorReason)).
    		Increment()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 20 18:48:20 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodStatusResult.json

            "status": "statusValue",
            "lastProbeTime": "2003-01-01T01:01:01Z",
            "lastTransitionTime": "2004-01-01T01:01:01Z",
            "reason": "reasonValue",
            "message": "messageValue"
          }
        ],
        "message": "messageValue",
        "reason": "reasonValue",
        "nominatedNodeName": "nominatedNodeNameValue",
        "hostIP": "hostIPValue",
        "hostIPs": [
          {
            "ip": "ipValue"
          }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. pkg/kubelet/events/event.go

    )
    
    // Image manager event reason list
    const (
    	InvalidDiskCapacity = "InvalidDiskCapacity"
    	FreeDiskSpaceFailed = "FreeDiskSpaceFailed"
    )
    
    // Probe event reason list
    const (
    	ContainerUnhealthy    = "Unhealthy"
    	ContainerProbeWarning = "ProbeWarning"
    )
    
    // Pod worker event reason list
    const (
    	FailedSync = "FailedSync"
    )
    
    // Config event reason list
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top