Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,632 for extr6 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/strconv/ftoaryu.go

    		exact = true
    		d0 = true
    	}
    	// Remove extra lower bits and keep rounding info.
    	extra := uint(-dexp2)
    	extraMask := uint32(1<<extra - 1)
    
    	di, dfrac := di>>extra, di&extraMask
    	roundUp := false
    	if exact {
    		// If we computed an exact product, d + 1/2
    		// should round to d+1 if 'd' is odd.
    		roundUp = dfrac > 1<<(extra-1) ||
    			(dfrac == 1<<(extra-1) && !d0) ||
    			(dfrac == 1<<(extra-1) && d0 && di&1 == 1)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    	var extra map[string]authenticationv1.ExtraValue
    	if u.Extra != nil {
    		extra = make(map[string]authenticationv1.ExtraValue, len(u.Extra))
    		for k, v := range u.Extra {
    			extra[k] = authenticationv1.ExtraValue(v)
    		}
    	}
    	return authenticationv1.UserInfo{
    		Username: u.Username,
    		UID:      u.UID,
    		Groups:   u.Groups,
    		Extra:    extra,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K 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. 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)
  10. 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)
Back to top