Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 518 for numeric (0.19 sec)

  1. guava/src/com/google/common/net/HostSpecifier.java

    import java.net.InetAddress;
    import java.text.ParseException;
    import javax.annotation.CheckForNull;
    
    /**
     * A syntactically valid host specifier, suitable for use in a URI. This may be either a numeric IP
     * address in IPv4 or IPv6 notation, or a domain name.
     *
     * <p>Because this class is intended to represent host specifiers which can reasonably be used in a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/README.md

        the op's inputs and calling `RunTest` (`RunTest` uses a
        [gradient checker](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/cc/framework/gradient_checker.cc)
        to verify that the theoretical gradient matches the numeric gradient). For
        example:
    
        ```
        TEST_F(ArrayGradTest, IdentityGrad) {
          TensorShape shape({5, 2});
          auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 19:12:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/conversions0.go

    // conversions
    
    package conversions
    
    import "unsafe"
    
    // argument count
    var (
    	_ = int() /* ERROR "missing argument" */
    	_ = int(1, 2 /* ERROR "too many arguments" */ )
    )
    
    // numeric constant conversions are in const1.src.
    
    func string_conversions() {
    	const A = string(65)
    	assert(A == "A")
    	const E = string(-1)
    	assert(E == "\uFFFD")
    	assert(E == string(1234567890))
    
    	type myint int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

      ];
    
      let options = [
          Option<"enable_numeric_verify_", "numeric-verify",
                 "bool", "false",
                 "Whether verify numericals at runtime.">,
          Option<"error_tolerance_", "error-tolerance",
                 "float", "5.0f",
                 "Error tolerance for numeric verify. Valid when `-numeric-verify` is set.">,
          Option<"enable_whole_model_verify_", "whole-model-verify",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	// slices present in this map are always of length 1.
    	Label map[string][]string
    	// NumLabel is a per-label-key map to values for numeric labels. See a note
    	// above on handling multiple values for a label.
    	NumLabel map[string][]int64
    	// NumUnit is a per-label-key map to the unit names of corresponding numeric
    	// label values. The unit info may be missing even if the label is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/log/slog/level.go

    	return strconv.AppendQuote(nil, l.String()), nil
    }
    
    // UnmarshalJSON implements [encoding/json.Unmarshaler]
    // It accepts any string produced by [Level.MarshalJSON],
    // ignoring case.
    // It also accepts numeric offsets that would result in a different string on
    // output. For example, "Error-8" would marshal as "INFO".
    func (l *Level) UnmarshalJSON(data []byte) error {
    	s, err := strconv.Unquote(string(data))
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/index.go

    // limitations under the License.
    
    package profile
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    // SampleIndexByName returns the appropriate index for a value of sample index.
    // If numeric, it returns the number, otherwise it looks up the text in the
    // profile sample types.
    func (p *Profile) SampleIndexByName(sampleIndex string) (int, error) {
    	if sampleIndex == "" {
    		if dst := p.DefaultSampleType; dst != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 19:18:53 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

          return routes[nextRouteIndex++]
        }
      }
    
      companion object {
        /** Obtain a host string containing either an actual host name or a numeric IP address. */
        val InetSocketAddress.socketHost: String get() {
          // The InetSocketAddress was specified with a string (either a numeric IP or a host name). If
          // it is a name, all IPs for that name should be tried. If it is an IP address, only that IP
          // address should be tried.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract_test.go

      map:
        fields:
        - name: paused
          type:
            scalar: boolean
        - name: replicas
          type:
            scalar: numeric
    - name: io.k8s.api.apps.v1.DeploymentStatus
      map:
        fields:
        - name: replicas
          type:
            scalar: numeric
    - name: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
      map:
        fields:
        - name: creationTimestamp
          type:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 22 22:32:45 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractUserClassFilePermissions.java

    import org.gradle.api.file.UserClassFilePermissions;
    
    public abstract class AbstractUserClassFilePermissions implements UserClassFilePermissions {
    
        /**
         * Converts the user permission to a numeric Unix permission.
         * See {@link ConfigurableFilePermissions#unix(String)} for details,
         * returned value is equivalent to one of the three octal digits.
         */
        protected int toUnixNumeric() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top