Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for ctb2 (0.09 sec)

  1. src/go/doc/testdata/d.2.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/storage_test.go

    			location: expectedIP + ":12345",
    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "ctr1"},
    						{Name: "ctr2", Ports: []api.ContainerPort{{ContainerPort: 9376}}},
    					},
    				},
    				Status: api.PodStatus{PodIPs: []api.PodIP{{IP: expectedIP}}},
    			},
    			query:    "foo",
    			location: expectedIP + ":9376",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. pkg/volume/testing/volume_host.go

    func (f *fakeKubeletVolumeHost) GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error) {
    	ctb, err := f.kubeClient.CertificatesV1alpha1().ClusterTrustBundles().Get(context.Background(), name, metav1.GetOptions{})
    	if err != nil {
    		return nil, fmt.Errorf("while getting ClusterTrustBundle %s: %w", name, err)
    	}
    
    	return []byte(ctb.Spec.TrustBundle), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/go/doc/testdata/d1.go

    // Test cases for sort order of declarations.
    
    package d
    
    // C2 should be third.
    const C2 = 2
    
    // V2 should be third.
    var V2 int
    
    // CBx constants should appear before CAx constants.
    const (
    	CB2 = iota // before CB1
    	CB1        // before CB0
    	CB0        // at end
    )
    
    // VBx variables should appear before VAx variables.
    var (
    	VB2 int // before VB1
    	VB1 int // before VB0
    	VB0 int // at end
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1K bytes
    - Viewed (0)
  5. src/go/doc/testdata/d.0.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  6. src/go/doc/testdata/d.1.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top