Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for ctb2 (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

      // dependencies.
      // We don’t mention the control token in the return type here, it is implicit.
      %0, %ctl0 = tf_executor.opA %feed#0, %feed#1 : tensor<*xf32>
      %1, %ctl1 = tf_executor.opB : tensor<*xf32>
      %2, %ctl2 = tf_executor.opC %1, %ctl0 : tensor<*xf32>
      %3, %ctl3 = tf_executor.opD %2 : tensor<*xf32>
      tf_executor.fetch %3 : tensor<*xf32>
    } // end of the “tf_executor.graph" operation/region
    ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/SessionTest.java

            CIFSContext ctx1 = withTestNTLMCredentials(getContext());
            CIFSContext ctx2 = withAnonymousCredentials();
            String loc = getTestShareGuestURL();
            try ( SmbResource f1 = ctx1.get(loc) ) {
                f1.exists();
                try ( SmbResource f2 = ctx2.get(loc) ) {
                    f2.exists();
                    connectionMatches(f1, f2);
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        assertNull(Punycode.decode("xn--a-99999b.net"))
      }
    
      @Test fun dashInPrefix() {
        testEncodeDecode(
          unicode = "klmnöpqrst-uvwxy",
          punycode = "xn--klmnpqrst-uvwxy-ctb",
        )
      }
    
      @Test fun uppercasePunycode() {
        testDecodeOnly(
          unicode = "ليهمابتكلموشعربي؟",
          punycode = "XN--EGBPDAJ6BU4BXFGEHFVWXN",
        )
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	ctx2 := genericapirequest.WithNamespace(genericapirequest.NewContext(), "bar4")
    	objMeta.SetNamespace(genericapirequest.NamespaceValue(ctx2))
    	_, err = t.storage.(rest.Creater).Create(ctx2, obj, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. src/syscall/js/js_test.go

    	<-c
    }
    
    func TestInvokeFunction(t *testing.T) {
    	called := false
    	cb := js.FuncOf(func(this js.Value, args []js.Value) any {
    		cb2 := js.FuncOf(func(this js.Value, args []js.Value) any {
    			called = true
    			return 42
    		})
    		defer cb2.Release()
    		return cb2.Invoke()
    	})
    	defer cb.Release()
    	if got := cb.Invoke().Int(); got != 42 {
    		t.Errorf("got %#v, want %#v", got, 42)
    	}
    	if !called {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/const0.go

    )
    
    type (
    	mybool bool
    	myint int
    	myfloat float64
    	mycomplex complex128
    )
    
    // typed constants
    const (
    	// boolean values
    	tb0 bool = false
    	tb1 bool = true
    	tb2 mybool = 2 < 1
    	tb3 mybool = ti1 == tf1 /* ERROR "mismatched types" */
    
    	// integer values
    	ti0 int8 = ui0
    	ti1 int32 = ui1
    	ti2 int64 = ui2
    	ti3 myint = ui3 /* ERROR "overflows" */
    	ti4 myint = ui4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/context/x_test.go

    	cause := errors.New("TestCustomContextPropagation")
    	donec := make(chan struct{})
    	ctx1, cancel1 := WithCancelCause(Background())
    	ctx2 := &customDoneContext{
    		Context: ctx1,
    		donec:   donec,
    	}
    	ctx3, cancel3 := WithCancel(ctx2)
    	defer cancel3()
    
    	cancel1(cause)
    	close(donec)
    
    	<-ctx3.Done()
    	if got, want := ctx3.Err(), Canceled; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set.go

    // an uncached quorum read sometime after listing Pods/ControllerRevisions (see #42639).
    func (ssc *StatefulSetController) canAdoptFunc(ctx context.Context, set *apps.StatefulSet) func(ctx2 context.Context) error {
    	return controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    		fresh, err := ssc.kubeClient.AppsV1().StatefulSets(set.Namespace).Get(ctx, set.Name, metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    		oldPod                              *api.PodSpec
    		newPod                              *api.PodSpec
    		wantPod                             *api.PodSpec
    	}{
    		{
    			description: "feature gate disabled, cannot add CTB volume to pod",
    			oldPod: &api.PodSpec{
    				Volumes: []api.Volume{},
    			},
    			newPod: &api.PodSpec{
    				Volumes: []api.Volume{
    					{
    						Name: "foo",
    						VolumeSource: api.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	counter.Add(1) // account for the following goroutine
    	go func() {
    		defer counter.Add(-1) // account completion of this goroutine
    		idle1 = req1.Finish(func() {
    			executed1 = true
    			ctx2, cancel2 := context.WithCancel(context.Background())
    			tBefore := clk.Now()
    			counter.Add(1) // account for the following goroutine
    			go func() {
    				defer counter.Add(-1) // account completion of this goroutine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top