Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for Patches (0.25 sec)

  1. pkg/scheduler/schedule_one_test.go

    			},
    			eventReason: "FailedScheduling",
    			expectError: makePredicateError("1 node(s) had volume node affinity conflict"),
    		},
    		{
    			name: "unbound/no matches",
    			volumeBinderConfig: &volumebinding.FakeVolumeBinderConfig{
    				FindReasons: volumebinding.ConflictReasons{volumebinding.ErrReasonBindConflict},
    			},
    			eventReason: "FailedScheduling",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	err  error // deferred error for easy chaining
    	rows *Rows
    }
    
    // Scan copies the columns from the matched row into the values
    // pointed at by dest. See the documentation on [Rows.Scan] for details.
    // If more than one row matches the query,
    // Scan uses the first row and discards the rest. If no row matches
    // the query, Scan returns [ErrNoRows].
    func (r *Row) Scan(dest ...any) error {
    	if r.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    bool IsBroadcastableElementsAttrAndType(Type a, Type b) {
      return OpTrait::util::getBroadcastedType(a, b) != Type();
    }
    
    // Returns whether the resultant type of any broadcastable operation with
    // operands `a` and `b` matches `expected_output`. Returns false if `a` is not
    // broadcast-compatible with `b`.
    bool OperandsBroadcastToOutputType(Type a, Type b, Type expected_output) {
      Type output_element_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        // and can be removed.
        auto fakeQuantOp = cast<FakeQuantOp>(op);
        for (auto* operand : fakeQuantOp.getResult().getUsers())
          if (!HasValidMinMaxAttribute(operand)) return failure();
    
        return success();
      }
    
      void rewrite(Operation* op, PatternRewriter& rewriter) const override {
        // Replace the matched FakeQuantOp by its primary operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      local -r staging_path=$1
      local -r gs_url=$2
      local -r tar=$3
      local -r hash=$4
      local -r basename_tar=$(basename "${tar}")
    
      #check whether this tar alread exists and has the same hash
      #if it matches, then don't bother uploading it again
    
      #remote_tar_md5 checks the remote location for the existing tarball and its md5
      #staging_path example gs://kubernetes-staging-PROJECT/kubernetes-devel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        # Tests that there are variables in the model.
        variable_node_defs = _find_variables(output_graphdef)
        self.assertLen(variable_node_defs, 1)
    
        # Reads the variables from the checkpoint file and matches with the
        # variables found in the graph.
        checkpoint_path = os.path.join(
            self._output_saved_model_path, 'variables', 'variables'
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                 llvm::StringRef function_name) -> mlir::Location {
        // Use the catenation of function and node names as the lookup key into the
        // debug info. This matches the way that the key is formed on the python
        // side.
        //
        // We also use this as the name for the NameLoc for ops in function, since
        // otherwise our names could collide across functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    const (
    	replicateMetadata replicationAction = "metadata"
    	replicateNone     replicationAction = "none"
    	replicateAll      replicationAction = "all"
    )
    
    // matches k1 with all keys, returns 'true' if one of them matches
    func equals(k1 string, keys ...string) bool {
    	for _, k2 := range keys {
    		if strings.EqualFold(k1, k2) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

        platform.assumeNotConscrypt()
        platform.assumeNotBouncyCastle()
    
        // The _anon_ suites became unsupported in "1.8.0_201" and "11.0.2".
        assumeFalse(
          System.getProperty("java.version", "unknown").matches(Regex("1\\.8\\.0_1\\d\\d")),
        )
        server.enqueue(MockResponse())
        val cipherSuite = CipherSuite.TLS_DH_anon_WITH_AES_128_GCM_SHA256
        val clientCertificates =
          HandshakeCertificates.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.core.v1.Toleration": {
            "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
            "properties": {
              "effect": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
Back to top