Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for patching (0.18 sec)

  1. src/database/sql/sql_test.go

    		if err == nil {
    			t.Fatal("expecting back an error")
    		}
    		if !errors.Is(err, errTestScanWrap) {
    			t.Fatalf("errors.Is mismatch\n%v\nWant: %v", err, errTestScanWrap)
    		}
    		// Ensure that error substring matching still correctly works.
    		if !strings.Contains(err.Error(), errTestScanWrap.Error()) {
    			t.Fatalf("Error %v does not contain %v", err, errTestScanWrap)
    		}
    	}
    }
    
    type alwaysErrValuer struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              "name"
            ],
            "type": "object"
          },
          "io.k8s.api.autoscaling.v2.MetricSpec": {
            "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).",
            "properties": {
              "containerResource": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    // is a z pointer that starts out pointing at the strange magic byte list in
    // the Optab struct.  With each step past a non-matching ytable line, z
    // advances by the 4th entry in the line.  When a matching line is found, that
    // z pointer has the extra data to use in laying down the instruction bytes.
    // The actual bytes laid down are a function of the 3rd entry in the line (that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    func.func @testSparseSoftmaxCrossEntropyWithLogits(%arg0: tensor<2x3xf32>, %arg1: tensor<3xi32>) -> (tensor<2xf32>, tensor<2x3xf32>) {
      // expected-error @+1 {{requires features and labels with matching first dimension}}
      %0:2 = "tf.SparseSoftmaxCrossEntropyWithLogits"(%arg0, %arg1) : (tensor<2x3xf32>, tensor<3xi32>) -> (tensor<2xf32>, tensor<2x3xf32>)
      func.return %0#0, %0#1 : tensor<2xf32>, tensor<2x3xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    		VersionID:         versionID,
    		MTime:             dobj.DeleteMarkerMTime.Time,
    		DeleteReplication: drs,
    		Versioned:         globalBucketVersioningSys.PrefixEnabled(bucket, dobj.ObjectName),
    		// Objects matching prefixes should not leave delete markers,
    		// dramatically reduces namespace pollution while keeping the
    		// benefits of replication, make sure to apply version suspension
    		// only at bucket level instead.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    module attributes {tf.versions = {producer = 888 : i32}, tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
      func.func @bad_devices() {
        // expected-error@+1 {{error in fetching TPU compilation/execution devices: no TPU_SYSTEM devices found}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        new_body_yield.reserve(while_op.getNumOperands());
        types.reserve(while_op.getNumOperands());
    
        // Remove block arguments not used in either cond or body. This leaves the
        // block arguments of body and cond matching still.
        int arg_index = 0;
        for (int while_index = 0, e = while_op.getNumOperands(); while_index < e;
             ++while_index) {
          auto value = while_op.getOperand(while_index);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    }
    
    // TestPriorityQueue_AssignedPodAdded tests AssignedPodAdded. It checks that
    // when a pod with pod affinity is in unschedulablePods and another pod with a
    // matching label is added, the unschedulable pod is moved to activeQ.
    func TestPriorityQueue_AssignedPodAdded(t *testing.T) {
    	logger, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertSentRequestAtMillis(request1SentAt, request1ReceivedAt)
          .assertReceivedResponseAtMillis(request1SentAt, request1ReceivedAt)
    
        // Check the network response. It has the caller's request, plus some caching headers.
        cacheHit.networkResponse()
          .assertCode(304)
          .assertHeader("Donut", "b")
          .assertRequestHeader("Accept-Language", "en-US")
          .assertRequestHeader("Accept-Charset", "UTF-8")
    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. cluster/gce/util.sh

        --filter="(name ~ '${NODE_INSTANCE_PREFIX}-.+' OR name ~ '${WINDOWS_NODE_INSTANCE_PREFIX}-.+') AND zone:(${ZONE})" \
        --format='value(name)')
      if (( "${#minions[@]}" > 0 )); then
        KUBE_RESOURCE_FOUND="${#minions[@]} matching ${NODE_INSTANCE_PREFIX}-.+ or ${WINDOWS_NODE_INSTANCE_PREFIX}-.+"
        return 1
      fi
    
      if gcloud compute firewall-rules describe --project "${NETWORK_PROJECT}" "${MASTER_NAME}-https" &>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top