Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 673 for extr6 (2.79 sec)

  1. src/runtime/cpuprof.go

    		osyield()
    	}
    
    	if cpuprof.numExtra+1+len(stk) < len(cpuprof.extra) {
    		i := cpuprof.numExtra
    		cpuprof.extra[i] = uintptr(1 + len(stk))
    		copy(cpuprof.extra[i+1:], stk)
    		cpuprof.numExtra += 1 + len(stk)
    	} else {
    		cpuprof.lostExtra++
    	}
    
    	prof.signalLock.Store(0)
    }
    
    // addExtra adds the "extra" profiling events,
    // queued by addNonGo, to the profile log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pkg/registry/authentication/selfsubjectreview/rest.go

    				Username: user.GetName(),
    				UID:      user.GetUID(),
    				Groups:   user.GetGroups(),
    				Extra:    make(map[string]authenticationapi.ExtraValue, len(extra)),
    			},
    		},
    	}
    	for key, attr := range extra {
    		selfSR.Status.UserInfo.Extra[key] = attr
    	}
    
    	return selfSR, nil
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1beta1/certificatesigningrequestspec.go

    	}
    	return b
    }
    
    // WithExtra puts the entries into the Extra field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, the entries provided by each call will be put on the Extra field,
    // overwriting an existing map entries in Extra field with the same key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/validation.go

    	errs = append(errs, s.CloudProvider.Validate()...)
    	errs = append(errs, validateClusterIPFlags(s.Extra)...)
    	errs = append(errs, validateServiceNodePort(s.Extra)...)
    	errs = append(errs, validatePublicIPServiceClusterIPRangeIPFamilies(s.Extra, *s.GenericServerRunOptions)...)
    
    	if s.MasterCount <= 0 {
    		errs = append(errs, fmt.Errorf("--apiserver-count should be a positive number, but value '%d' provided", s.MasterCount))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/completion.go

    type completedConfig struct {
    	Generic genericapiserver.CompletedConfig
    	*Extra
    }
    
    // CompletedConfig embeds a private pointer that cannot be instantiated outside of this package
    type CompletedConfig struct {
    	*completedConfig
    }
    
    func (c *Config) Complete() CompletedConfig {
    	cfg := completedConfig{
    		c.Generic.Complete(c.VersionedInformers),
    		&c.Extra,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:13:43 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer.go

    			copy(di.Groups, groups)
    			sort.Strings(di.Groups)
    		}
    
    		if extra := u.GetExtra(); len(extra) > 0 {
    			di.Extra = make(map[string][]string, len(extra))
    			for k, vs := range extra {
    				vdupe := make([]string, len(vs))
    				copy(vdupe, vs)
    				sort.Strings(vdupe)
    				di.Extra[k] = vdupe
    			}
    		}
    
    		serializableAttributes.User = di
    	}
    
    	var b strings.Builder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/registry/authorization/util/helpers.go

    		ResourceRequest: false,
    		Path:            in.Path,
    		Verb:            in.Verb,
    	}
    }
    
    func convertToUserInfoExtra(extra map[string]authorizationapi.ExtraValue) map[string][]string {
    	if extra == nil {
    		return nil
    	}
    	ret := map[string][]string{}
    	for k, v := range extra {
    		ret[k] = []string(v)
    	}
    
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1/certificatesigningrequestspec.go

    	}
    	return b
    }
    
    // WithExtra puts the entries into the Extra field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, the entries provided by each call will be put on the Extra field,
    // overwriting an existing map entries in Extra field with the same key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/mkbuiltin.go

    func enumerateBasicTypes() []extra {
    	names := [...]string{
    		"int8", "uint8", "int16", "uint16",
    		"int32", "uint32", "int64", "uint64",
    		"float32", "float64", "complex64", "complex128",
    		"unsafe.Pointer", "uintptr", "bool", "string", "error",
    		"func(error) string"}
    	result := []extra{}
    	for _, n := range names {
    		result = append(result, extra{"type:" + n, 0})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetDependenciesIntegrationTest.groovy

            file("src/extra/cpp/bad.cpp") << """
        FILE WILL BE IGNORED: source set dependency set only considers headers
    """
    
            buildFile << """
    apply plugin: 'cpp'
    
    model {
        components { comp ->
            extra(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib \$.components.extra.sources.cpp
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top