Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for human (0.04 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    // String pretty-prints a typePath.
    func (path typePath) String() string {
    	n := len(path)
    	var buf bytes.Buffer
    	for i := range path {
    		if i > 0 {
    			fmt.Fprint(&buf, " contains ")
    		}
    		// The human-readable path is in reverse order, outermost to innermost.
    		fmt.Fprint(&buf, path[n-i-1])
    	}
    	return buf.String()
    }
    
    func lockPathRhs(pass *analysis.Pass, x ast.Expr) typePath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 7;
    
      // The reason for the condition's last transition.
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      optional string message = 5;
    }
    
    // DeploymentList is a list of Deployments.
    message DeploymentList {
      // Standard list metadata.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    	"reason":             "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
    	"message":            "`message` is a human-readable message indicating details about last transition.",
    }
    
    func (FlowSchemaCondition) SwaggerDoc() map[string]string {
    	return map_FlowSchemaCondition
    }
    
    var map_FlowSchemaList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

                                                bool report_error) {
      if (sharding.ParseFromString(shard_str)) return mlir::success();
      // TODO(b/287299845) MLIR should only have human readable representation
      // going forward. So, remove parsing binary sharding.
      absl::StatusOr<xla::HloSharding> sharding_hlo = xla::ParseSharding(shard_str);
      if (sharding_hlo.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    	"reason":             "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
    	"message":            "`message` is a human-readable message indicating details about last transition.",
    }
    
    func (FlowSchemaCondition) SwaggerDoc() map[string]string {
    	return map_FlowSchemaCondition
    }
    
    var map_FlowSchemaList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"reason":             "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.",
    	"message":            "`message` is a human-readable message indicating details about last transition.",
    }
    
    func (FlowSchemaCondition) SwaggerDoc() map[string]string {
    	return map_FlowSchemaCondition
    }
    
    var map_FlowSchemaList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/maven/conf/settings.xml

         | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
         |
        <mirror>
          <id>mirrorId</id>
          <mirrorOf>repositoryId</mirrorOf>
          <name>Human Readable Name for this Mirror.</name>
          <url>http://my.repository.com/repo/path</url>
        </mirror>
        -->
        <mirror>
          <id>maven-default-http-blocker</id>
          <mirrorOf>external:http:*</mirrorOf>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      // be combined.
      virtual bool Passed(bool exit_status_ok) = 0;
    
      // Signals that the death test did not die as expected.
      virtual void Abort(AbortReason reason) = 0;
    
      // Returns a human-readable outcome message regarding the outcome of
      // the last death test.
      static const char* LastMessage();
    
      static void set_last_death_test_message(const std::string& message);
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"reason":             "reason indicates a brief reason for the request state",
    	"message":            "message contains a human readable message with details about the request state",
    	"lastUpdateTime":     "lastUpdateTime is the time of the last update to this condition",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta3/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top