Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for extr6 (0.17 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			want: &user.DefaultInfo{
    				Name:   "jane",
    				Groups: []string{"team1", "team2"},
    				UID:    "1234",
    				Extra: map[string][]string{
    					"example.org/foo": {"bar"},
    					"example.org/bar": {"baz", "qux"},
    				},
    			},
    		},
    		{
    			name: "extra claim mapping, value derived from claim value",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    	i--
    	dAtA[i] = 0x32
    	if len(m.Extra) > 0 {
    		keysForExtra := make([]string, 0, len(m.Extra))
    		for k := range m.Extra {
    			keysForExtra = append(keysForExtra, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForExtra)
    		for iNdEx := len(keysForExtra) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.Extra[string(keysForExtra[iNdEx])]
    			baseI := i
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    	i--
    	dAtA[i] = 0x32
    	if len(m.Extra) > 0 {
    		keysForExtra := make([]string, 0, len(m.Extra))
    		for k := range m.Extra {
    			keysForExtra = append(keysForExtra, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForExtra)
    		for iNdEx := len(keysForExtra) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.Extra[string(keysForExtra[iNdEx])]
    			baseI := i
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    		t.Error("Extra fields with 'secret' in the name found. Verify VisitPodSecretNames() is including these fields if appropriate, then correct expectedSecretPaths")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    			oneNewExtraM()
    		}
    	} else if extraMLength.Load() == 0 {
    		// Make sure there is at least one extra M.
    		oneNewExtraM()
    	}
    }
    
    // oneNewExtraM allocates an m and puts it on the extra list.
    func oneNewExtraM() {
    	// Create extra goroutine locked to extra m.
    	// The goroutine is the context in which the cgo callback will run.
    	// The sched.pc will never be returned to, but setting it to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. fastapi/applications.py

                    another one for output.
                    """
                ),
            ] = True,
            **extra: Annotated[
                Any,
                Doc(
                    """
                    Extra keyword arguments to be stored in the app, not used by FastAPI
                    anywhere.
                    """
                ),
            ],
        ) -> None:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    	nn := pkix.Name{}
    	nn.FillFromRDNSequence(&rdns)
    
    	// Check that zero-length non-nil ExtraNames hide Names.
    	extra := []pkix.AttributeTypeAndValue{
    		{Type: asn1.ObjectIdentifier([]int{1, 2, 3, 4, 5}), Value: "backing array"}}
    	extraNotNil := pkix.Name{
    		Locality:   []string{"Gophertown"},
    		ExtraNames: extra[:0],
    		Names: []pkix.AttributeTypeAndValue{
    			{Type: asn1.ObjectIdentifier([]int{1, 2, 3, 4, 5}), Value: "golang.org"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. fastapi/routing.py

                    """
                ),
            ] = None,
            openapi_extra: Annotated[
                Optional[Dict[str, Any]],
                Doc(
                    """
                    Extra metadata to be included in the OpenAPI schema for this *path
                    operation*.
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

      local -r primary_cn="${1}"
    
      # Determine extra certificate names for master
    
      # Create service_ip by stripping the network mask part from
      # SERVICE_CLUSTER_IP_RANGE and incrementing the host part with 1
      service_ip=${SERVICE_CLUSTER_IP_RANGE%/*}
      service_ip="${service_ip%.*}.$((${service_ip##*.} + 1))"
      local sans=""
      for extra in "$@"; do
        if [[ -n "${extra}" ]]; then
          sans="${sans}IP:${extra},"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	for i, test := range appendTests {
    		origLen, extraLen := len(test.orig), len(test.extra)
    		want := append(test.orig, test.extra...)
    		// Convert extra from []int to []Value.
    		e0 := make([]Value, len(test.extra))
    		for j, e := range test.extra {
    			e0[j] = ValueOf(e)
    		}
    		// Convert extra from []int to *SliceValue.
    		e1 := ValueOf(test.extra)
    
    		// Test Append.
    		a0 := ValueOf(&test.orig).Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top