Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 142 for 123456700 (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	//
    	// The minimum valid JWT payload must contain the following claims:
    	// {
    	//		"iss": "https://issuer.example.com",
    	//		"aud": ["audience"],
    	//		"exp": 1234567890,
    	//		"<username claim>": "username"
    	// }
    	JWT []JWTAuthenticator `json:"jwt"`
    }
    
    // JWTAuthenticator provides the configuration for a single JWT authenticator.
    type JWTAuthenticator struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    		t:         t,
    	}
    
    	tests := []struct {
    		pod       *v1.Pod
    		mirrorPod *v1.Pod
    	}{
    		{
    			&v1.Pod{},
    			&v1.Pod{},
    		},
    		{
    			podWithUIDNameNs("12345678", "foo", "new"),
    			podWithUIDNameNs("12345678", "fooMirror", "new"),
    		},
    		{
    			podWithUIDNameNs("98765", "bar", "new"),
    			podWithUIDNameNs("98765", "barMirror", "new"),
    		},
    	}
    
    	for i, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		{"invalid", "invalid!", familyIPv4, false, nil},
    		{"zero", "00000000", familyIPv4, true, net.IP{0, 0, 0, 0}},
    		{"ffff", "FFFFFFFF", familyIPv4, true, net.IP{0xff, 0xff, 0xff, 0xff}},
    		{"valid v4", "12345678", familyIPv4, true, net.IP{120, 86, 52, 18}},
    		{"valid v6", "fe800000000000000000000000000000", familyIPv6, true, net.IP{0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad_test.cc

        return CRV({{-1.0f, 0.5f}, {1.0f, 0.5f}, {2, -1}});
      };
      TestCWiseGrad<complex64, complex64>(SQRT, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Rsqrt) {
      auto x_fn = [this](const int i) { return RV({1, 2, 3, 4, 5, 6, 7, 8}); };
      TestCWiseGrad<float, float>(RSQRT, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Rsqrt_Complex) {
      auto x_fn = [this](const int i) {
        return CRV({{-1.0f, 0.5f}, {1.0f, 0.5f}, {2, -1}});
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    				}
    			}
    		})
    	}
    }
    
    var _i = 7
    
    var valueToStringTests = []pair{
    	{123, "123"},
    	{123.5, "123.5"},
    	{byte(123), "123"},
    	{"abc", "abc"},
    	{T{123, 456.75, "hello", &_i}, "reflect_test.T{123, 456.75, hello, *int(&7)}"},
    	{new(chan *T), "*chan *reflect_test.T(&chan *reflect_test.T)"},
    	{[10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, "[10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  6. src/net/lookup_test.go

    	{"1234:567::89a:bcde", "e.d.c.b.a.9.8.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.7.6.5.0.4.3.2.1.ip6.arpa.", ""},
    	{"1234:567:fefe:bcbc:adad:9e4a:89a:bcde", "e.d.c.b.a.9.8.0.a.4.e.9.d.a.d.a.c.b.c.b.e.f.e.f.7.6.5.0.4.3.2.1.ip6.arpa.", ""},
    	{"1.2.3", "", "unrecognized address"},
    	{"1.2.3.4.5", "", "unrecognized address"},
    	{"1234:567:bcbca::89a:bcde", "", "unrecognized address"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	// - The URL path of an imageMatch must be a prefix of the target image URL path.
    	// - If the imageMatch contains a port, then the port must match in the image as well.
    	//
    	// Example values of matchImages:
    	//   - `123456789.dkr.ecr.us-east-1.amazonaws.com`
    	//   - `*.azurecr.io`
    	//   - `gcr.io`
    	//   - `*.*.registry.io`
    	//   - `registry.io:8080/path`
    	MatchImages []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	fakeNodeHandler := &testutil.FakeNodeHandler{
    		Existing: []*v1.Node{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "node0",
    					UID:               "1234567890",
    					CreationTimestamp: metav1.Date(2015, 8, 10, 0, 0, 0, 0, time.UTC),
    				},
    				Status: v1.NodeStatus{
    					Conditions: []v1.NodeCondition{
    						{
    							Type:               v1.NodeReady,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    				}},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: []string{"10.1.2.3", "2001:db8::1234:5678"},
    				}},
    			},
    			// Columns: Name, AddressType, Ports, Endpoints, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"abcslice.123", "IPv4", "80", "10.1.2.3,2001:db8::1234:5678", "0s"}}},
    		}, {
    			endpointSlice: discovery.EndpointSlice{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    		break
    	}
    	if !found {
    		t.Errorf("no LC_BUILD_VERSION load command found")
    	}
    }
    
    const Issue34788src = `
    
    package blah
    
    func Blah(i int) int {
    	a := [...]int{1, 2, 3, 4, 5, 6, 7, 8}
    	return a[i&7]
    }
    `
    
    func TestIssue34788Android386TLSSequence(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This is a cross-compilation test, so it doesn't make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top