Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 321 for human (0.07 sec)

  1. src/internal/coverage/cformat/format.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cformat
    
    // This package provides apis for producing human-readable summaries
    // of coverage data (e.g. a coverage percentage for a given package or
    // set of packages) and for writing data in the legacy test format
    // emitted by "go test -coverprofile=<outfile>".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. 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)
  3. pkg/apis/certificates/types.go

    	// If unset, should be treated as "True".
    	// +optional
    	Status api.ConditionStatus
    	// brief reason for the request state
    	// +optional
    	Reason string
    	// human readable message with details about the request state
    	// +optional
    	Message string
    	// timestamp for the last update to this condition
    	// +optional
    	LastUpdateTime metav1.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/networking/util/util.go

    	return hcm.HttpConnectionManager_ForwardClientCertDetails(c - 1)
    }
    
    // ByteCount returns a human readable byte format
    // Inspired by https://yourbasic.org/golang/formatting-byte-size-to-human-readable-format/
    func ByteCount(b int) string {
    	const unit = 1000
    	if b < unit {
    		return fmt.Sprintf("%dB", b)
    	}
    	div, exp := int64(unit), 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// The reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// A human readable message indicating details about the transition.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/types.go

    	LastTransitionTime metav1.Time
    	// `reason` is a unique, one-word, CamelCase reason for the condition's last transition.
    	Reason string
    	// `message` is a human-readable message indicating details about last transition.
    	Message string
    }
    
    // FlowSchemaConditionType is a valid value for FlowSchemaStatusCondition.Type
    type FlowSchemaConditionType string
    
    // +genclient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top