Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 161 for human (0.05 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render unsupportedNotation {
                type('Human').property('face')
                value('visible', 'person')
                candidates("a mask", "a vaccine")
                cannotBeConvertedTo('safe person')
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Human' property 'face' has unsupported value 'visible'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/authentication.go

    const convertedPeerAuthenticationPrefix = "converted_peer_authentication_" // use '_' character since those are illegal in k8s names
    
    // String converts MutualTLSMode to human readable string for debugging.
    func (mode MutualTLSMode) String() string {
    	switch mode {
    	case MTLSDisable:
    		return "DISABLE"
    	case MTLSPermissive:
    		return "PERMISSIVE"
    	case MTLSStrict:
    		return "STRICT"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

            wrapper.collectClasses(builder);
            return builder.build();
        }
    
        public String getName() {
            return wrapper.getRepresentation(true);
        }
    
        /**
         * Returns a human-readable name for the type.
         */
        public String getDisplayName() {
            return wrapper.getRepresentation(false);
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

            withProject("attachConsole", """
                #include <stdio.h>
                #include <stdlib.h>
                #include <windows.h>
    
                // Convenience method for getting a human readable form of the last error.
                void ErrorExit(const char *func){
                    DWORD errCode = GetLastError();
                    char *err;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

                                const std::vector<std::optional<double>>& node_maxs,
                                tensorflow::DataType inference_type,
                                QuantizationSpecs* quant_specs);
    
    // Returns a human-readable string of the QDQQuantMode enum class
    std::string GetQDQQuantModeString(QDQConversionMode mode);
    }  // namespace quant
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	// 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"`
    	// timestamp for the last update to this condition
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    // FlowSchemaList is a list of FlowSchema objects.
    message FlowSchemaList {
      // `metadata` is the standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
      optional string reason = 4;
    
      // `message` is a human-readable message indicating details about last transition.
      optional string message = 5;
    }
    
    // FlowSchemaList is a list of FlowSchema objects.
    message FlowSchemaList {
      // `metadata` is the standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

          } else if (isDone()) {
            addDoneString(builder);
          } else {
            builder.append("PENDING");
          }
        }
        return builder.append("]").toString();
      }
    
      /**
       * Provide a human-readable explanation of why this future has not yet completed.
       *
       * @return null if an explanation cannot be provided because the future is done.
       */
      @Nullable
      String pendingToString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    	Label string
    
    	// Resource is the resource to which this label should be applied.
    	Resource ResourceID
    }
    
    // Range provides details about a Range event.
    type Range struct {
    	// Name is a human-readable name for the range.
    	//
    	// This name can be used to identify the end of the range for the resource
    	// its scoped to, because only one of each type of range may be active on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top