Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 196 for representing (0.3 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

            try {
                return Try.successful(failable.call());
            } catch (Exception e) {
                return Try.failure(e);
            }
        }
    
        /**
         * Construct a {@code Try} representing a successful execution.
         * The returned object will hold the given result.
         * If the result is null, then the returned Try instance will hold null as its value.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/strconv/quote.go

    }
    
    // Quote returns a double-quoted Go string literal representing s. The
    // returned string uses Go escape sequences (\t, \n, \xFF, \u0100) for
    // control characters and non-printable characters as defined by
    // [IsPrint].
    func Quote(s string) string {
    	return quoteWith(s, '"', false, false)
    }
    
    // AppendQuote appends a double-quoted Go string literal representing s,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

      "!$0 || $0.getValue() == ::mlir::mhlo::ComparisonType::FLOAT">>;
    def SameTypeOrDefaultCompare : Constraint<CPred<
      "SameTypeOrDefaultCompare($0, $1)">>;
    
    // Converts a dag of HLOs representing banker rounding (round x.5 to nearest
    // even) to tf.round. This only supports float types because mhlo.floor only
    // supports float types. tf.round with integer input type will become an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	// AsCanonicalBytes returns a byte array representing the string representation
    	// of the value mantissa and an int32 representing its exponent in base-10. Callers may
    	// pass a byte slice to the method to avoid allocations.
    	AsCanonicalBytes(out []byte) ([]byte, int32)
    	// AsCanonicalBase1024Bytes returns a byte array representing the string representation
    	// of the value mantissa and an int32 representing its exponent in base-1024. Callers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/ops.h

      Tensor tensor_;
      const std::string node_name_ = "";
      int32 index_ = 0;
      DataType data_type_ = DT_INVALID;
    };
    
    /// A type for representing the output of ops that produce more than one output,
    /// or a list of tensors.
    typedef std::vector<Output> OutputList;
    
    /// A type for representing the input to ops that require a list of tensors.
    class InputList {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

        }
      }
    
      private static final Object PRED = new Object();
    
      // Every value in this map must either be an instance of PredAndSucc with a successorValue of
      // type V, PRED (representing predecessor), or an instance of type V (representing successor).
      private final Map<N, Object> adjacentNodeValues;
    
      /**
       * All node connections in this graph, in edge insertion order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. src/image/image.go

    	i := p.PixOffset(x, y)
    	s := p.Pix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    	s[0] = c.R
    	s[1] = c.G
    	s[2] = c.B
    	s[3] = c.A
    }
    
    // SubImage returns an image representing the portion of the image p visible
    // through r. The returned value shares pixels with the original image.
    func (p *RGBA) SubImage(r Rectangle) Image {
    	r = r.Intersect(p.Rect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

          "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/DirectedGraphConnections.java

        }
      }
    
      private static final Object PRED = new Object();
    
      // Every value in this map must either be an instance of PredAndSucc with a successorValue of
      // type V, PRED (representing predecessor), or an instance of type V (representing successor).
      private final Map<N, Object> adjacentNodeValues;
    
      /**
       * All node connections in this graph, in edge insertion order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top