Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,163 for extr6 (0.07 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. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

        def 'copies files and removes extra files from destDir'() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                file 'extra.txt'
                extraDir { file 'extra.txt' }
                dir1 {
                    file 'extra.txt'
                    extraDir { file 'extra.txt' }
                }
                someOtherEmptyDir {}
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                .artifact(name: "test-extra")
                .publish()
            def module2 = ivyHttpRepo.module("org.gradle", "other", "preview-1").publish()
    
            and:
            buildFile << """
    repositories { ivy { url "${ivyHttpRepo.uri}" } }
    configurations { compile }
    dependencies {
        compile ("org.gradle:test:1.45") {
            artifact {
                name = 'test-extra'
                type = 'jar'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K 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. src/crypto/tls/ticket.go

    		!unmarshalCertificate(&s, &cert) {
    		return nil, errors.New("tls: invalid session encoding")
    	}
    	for !extra.Empty() {
    		var e []byte
    		if !readUint24LengthPrefixed(&extra, &e) {
    			return nil, errors.New("tls: invalid session encoding")
    		}
    		ss.Extra = append(ss.Extra, e)
    	}
    	switch extMasterSecret {
    	case 0:
    		ss.extMasterSecret = false
    	case 1:
    		ss.extMasterSecret = true
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "duplicate extra mapping key",
    			in: api.ClaimMappings{
    				Username: api.PrefixedClaimOrExpression{Expression: "claims.username"},
    				Groups:   api.PrefixedClaimOrExpression{Expression: "claims.groups"},
    				Extra: []api.ExtraMapping{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    configurations {
                        foo.attributes { $freeDebug; attribute(extra, 'extra') }
                        foo2.attributes { $freeDebug; attribute(extra, 'extra 2') }
                        bar.attributes { $freeRelease; attribute(extra, 'extra') }
                        bar2.attributes { $freeRelease; attribute(extra, 'extra 2') }
                    }
                    task fooJar(type: Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. 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)
Back to top