Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 458 for unwrapped (0.4 sec)

  1. src/runtime/sema.go

    	// be read outside the lock, but is only written to with lock held.
    	//
    	// Both wait & notify can wrap around, and such cases will be correctly
    	// handled as long as their "unwrapped" difference is bounded by 2^31.
    	// For this not to be the case, we'd need to have 2^31+ goroutines
    	// blocked on the same condvar, which is currently not possible.
    	notify uint32
    
    	// List of parked waiters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    		t.Errorf("got res.StatusCode %d; expected %d due to panic", res.StatusCode, http.StatusInternalServerError)
    	}
    	select {
    	case err := <-gotPanic:
    		if err != http.ErrAbortHandler {
    			t.Errorf("expected unwrapped http.ErrAbortHandler, got %#v", err)
    		}
    	case <-time.After(30 * time.Second):
    		t.Fatalf("expected to see a handler panic, but didn't")
    	}
    }
    
    func TestTimeoutHeaders(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git_test.go

    				Version: "97f6aa59c81c623494825b43d39e445566e429a4",
    				Time:    time.Date(2018, 4, 17, 20, 0, 19, 0, time.UTC),
    			},
    		},
    		{
    			repo: gitrepo1,
    			rev:  "v1.2.4-annotated", // annotated tag uses unwrapped commit hash
    			info: &RevInfo{
    				Name:    "ede458df7cd0fdca520df19a33158086a8a68e81",
    				Short:   "ede458df7cd0",
    				Version: "v1.2.4-annotated",
    				Time:    time.Date(2018, 4, 17, 19, 43, 22, 0, time.UTC),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/git.go

    				refs[f[1]] = f[0]
    			}
    		}
    		for ref, hash := range refs {
    			if k, found := strings.CutSuffix(ref, "^{}"); found { // record unwrapped annotated tag as value of tag
    				refs[k] = hash
    				delete(refs, ref)
    			}
    		}
    		r.refs = refs
    	})
    	return r.refs, r.refsErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. src/encoding/asn1/asn1.go

    	}
    
    	if !params.explicit && params.private && params.tag != nil {
    		expectedClass = ClassPrivate
    		expectedTag = *params.tag
    		matchAnyClassAndTag = false
    	}
    
    	// We have unwrapped any explicit tagging at this point.
    	if !matchAnyClassAndTag && (t.class != expectedClass || t.tag != expectedTag) ||
    		(!matchAny && t.isCompound != compoundType) {
    		// Tags don't match. Again, it could be an optional element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  6. src/text/template/exec.go

    		argType := typ.In(0)
    		var v reflect.Value
    		for _, arg := range args {
    			v = s.evalArg(dot, argType, arg).Interface().(reflect.Value)
    			if truth(v) == (name == "or") {
    				// This value was already unwrapped
    				// by the .Interface().(reflect.Value).
    				return v
    			}
    		}
    		if final != missingVal {
    			// The last argument to and/or is coming from
    			// the pipeline. We didn't short circuit on an earlier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      // This is done after the first round of optimization to make sure all the
      // min/max operands of the tf.FakeQuant* are constants to be matched. The
      // following round of optimization will folding the unwrapped
      // tf.FakeQuant* ops with the weight constants.
      if (failed(ConvertFakeQuantOps(func, ctx, use_fake_quant_num_bits_))) {
        signalPassFailure();
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

       * {@code o} is an instance of {@code Entry}, it is wrapped using {@link #unmodifiableEntry} to
       * protect against a possible nefarious equals method.
       *
       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       * {@code o} is an instance of {@code Entry}, it is wrapped using {@link #unmodifiableEntry} to
       * protect against a possible nefarious equals method.
       *
       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/device_attribute_to_launch.mlir

      // CHECK: "tf.opA"
      "tf.opA"() {device = ""} : () -> tensor<i1>
      func.return
    }
    
    // Tests that an op not in tf dialect (tf_device.launch) with device attribute is not wrapped in `tf_device.launch`.
    // Also tests that a `tf_device.launch` is not rewrapped.
    // CHECK-LABEL: func @non_tf_op
    func.func @non_tf_op() {
      // CHECK: "tf_device.launch"
      // CHECK-NOT "tf_device.launch"
      // CHECK: "tf.opA"
      "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top