Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for human (0.12 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a failure if the key is a reserved attribute of Google Test
      // testcase tags.  Returns true if the property is valid.
      // TODO(russr): Validate attribute names are legal and human readable.
      static bool ValidateTestProperty(const std::string& xml_element,
                                       const TestProperty& test_property);
    
      // Adds a test part result to the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Adds a failure if the key is a reserved attribute of Google Test
      // testcase tags.  Returns true if the property is valid.
      // TODO(russr): Validate attribute names are legal and human readable.
      static bool ValidateTestProperty(const std::string& xml_element,
                                       const TestProperty& test_property);
    
      // Adds a test part result to the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

        exit 1
      fi
    
      # bump log level
      echo "6" | sudo tee /proc/sys/kernel/printk
    
      # loop through and grab all things in dmesg
      dmesg > "${LOG_DIR}/dmesg.log"
      dmesg -w --human >> "${LOG_DIR}/dmesg.log" &
    }
    
    function start_kubelet {
        KUBELET_LOG=${LOG_DIR}/kubelet.log
        mkdir -p "${POD_MANIFEST_PATH}" &>/dev/null || sudo mkdir -p "${POD_MANIFEST_PATH}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    	} else {
    		a.recommendations[args.Key] = append(a.recommendations[args.Key], timestampedRecommendation{args.DesiredReplicas, time.Now()})
    	}
    
    	// Determine a human-friendly message.
    	var reason, message string
    	if args.DesiredReplicas >= args.CurrentReplicas {
    		reason = "ScaleUpStabilized"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // Filter demangles a C++ or Rust symbol name,
    // returning the human-readable C++ or Rust name.
    // If any error occurs during demangling, the input string is returned.
    func Filter(name string, options ...Option) string {
    	ret, err := ToString(name, options...)
    	if err != nil {
    		return name
    	}
    	return ret
    }
    
    // ToString demangles a C++ or Rust symbol name,
    // returning a human-readable C++ or Rust name or an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	record[4] = byte(n)
    	hc.incSeq()
    
    	return record, nil
    }
    
    // RecordHeaderError is returned when a TLS record header is invalid.
    type RecordHeaderError struct {
    	// Msg contains a human readable string that describes the error.
    	Msg string
    	// RecordHeader contains the five bytes of TLS record header that
    	// triggered the error.
    	RecordHeader [5]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // For example, the reference to the expression of the first item of
      // validations is "spec.validations[0].expression"
      optional string fieldRef = 2;
    
      // The content of type checking information in a human-readable form.
      // Each line of the warning contains the type that the expression is checked
      // against, followed by the type check error from the compiler.
      optional string warning = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } else {
          addPendingString(builder); // delegates to addDoneString if future completes midway
        }
        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 (e.g. because the future is done).
       * @since 23.0
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  9. src/time/format.go

    	// Otherwise, fall back to default.
    	return Date(year, Month(month), day, hour, min, sec, nsec, defaultLocation), nil
    }
    
    // parseTimeZone parses a time zone string and returns its length. Time zones
    // are human-generated and unpredictable. We can't do precise error checking.
    // On the other hand, for a correct parse there must be a time zone at the
    // beginning of the string, so it's almost always true that there's one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// For example, the reference to the expression of the first item of
    	// validations is "spec.validations[0].expression"
    	FieldRef string
    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top