Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 326 for human (0.05 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

         * It will only be invoked for the build in which it was registered (i.e. not subsequent builds).
         * Each action provided to each invocation of this message will be notified.
         * <p>
         * The action receives a free-form, human friendly, string describing why the Daemon needs to be shut down.
         */
        void notifyOnUnhealthy(Action<? super String> listener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ResolutionFailureDescriber.java

    import org.gradle.internal.component.resolution.failure.type.ResolutionFailure;
    
    import java.util.Optional;
    
    /**
     * Describe a certain type of resolution failure, by providing concise and specific human-readable
     * information to the message of the resulting exception, and also adding resolution suggestions if possible.
     *
     * @param <FAILURE> the type of failure that this describer can describe
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // Unique, one-word, CamelCase reason for the condition's last transition.
      // +optional
      optional string reason = 5;
    
      // Human-readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // PodList is a list of Pods.
    message PodList {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            // better than doing things in the other order, where there will be a small window where text may not be captured after prompt is fully displayed.
            // This is only a problem for tooling; for a human (the audience for this feature) this makes no difference.
            userInput.readAndForwardText(event);
            handlePrompt(event);
        }
    
        private void handleUserInputRequestEvent() {
            startInput();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/model/xds.go

    	WorkloadType              = APITypePrefix + "istio.workload.Workload"
    	WorkloadAuthorizationType = APITypePrefix + "istio.security.Authorization"
    )
    
    // GetShortType returns an abbreviated form of a type, useful for logging or human friendly messages
    func GetShortType(typeURL string) string {
    	switch typeURL {
    	case ClusterType:
    		return "CDS"
    	case ListenerType:
    		return "LDS"
    	case RouteType:
    		return "RDS"
    	case EndpointType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

        boolean isConstraint();
    
        /**
         * Is this a dependency that "pulls up" strict version constraints from the target node?
         */
        boolean isEndorsingStrictVersions();
    
        /**
         * An optional human readable reason why this dependency is used.
         *
         * @return if not null, a description why this dependency is used.
         */
        @Nullable
        String getReason();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 4;
    
      // Unique, one-word, CamelCase reason for the condition's last transition.
      // +optional
      optional string reason = 5;
    
      // Human-readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // CarpList is a list of Carps.
    message CarpList {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

            failure.assertHasErrorOutput('error: package rx.observers does not exist')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/11995")
        def "provides a human understable error message when some variants were discarded and the remainder is ambiguous"() {
            buildFile << """
                apply plugin: 'java-base'
    
                configurations {
                    consumer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.cc

      // Only run after `QuantizeCompositeFunctionPass`.
      if (!IsQuantizeCompositeFunctionPass(pass, op)) return;
    
      auto module_op = cast<ModuleOp>(op);
      const QuantizationReport report(module_op);
    
      // Print a human-readable report to stdout regardless of whether the report
      // is saved to file.
      report.Print();
    
      // Exit early if the report should not be saved to file.
      if (!ShouldSaveReport(pass, op, file_path_)) return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// +optional
    	Conditions []CarpCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,2,rep,name=conditions"`
    	// A human readable message indicating details about why the carp is in this condition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top