Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,632 for extr6 (0.17 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			}
    			debugPrintf("releaseLock %s: reset havePtr (extra=%d)\n", c.name, state.extra())
    
    			// Optimization: only bother loading a new pointer
    			// if we have a value to add to it.
    			c.ptr = counterPtr{nil, nil}
    			if state.extra() != 0 {
    				c.ptr = c.file.lookup(c.name)
    				debugPrintf("releaseLock %s: ptr=%v\n", c.name, c.ptr)
    			}
    		}
    
    		if extra := state.extra(); extra != 0 && c.ptr.count != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/round_trip_test.go

    	var extra map[string]authenticationv1beta1.ExtraValue
    	if u.Extra != nil {
    		extra = make(map[string]authenticationv1beta1.ExtraValue, len(u.Extra))
    		for k, v := range u.Extra {
    			extra[k] = authenticationv1beta1.ExtraValue(v)
    		}
    	}
    	return authenticationv1beta1.UserInfo{
    		Username: u.Username,
    		UID:      u.UID,
    		Groups:   u.Groups,
    		Extra:    extra,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	}
    
    	if sa.PodName != "" && sa.PodUID != "" {
    		if info.Extra == nil {
    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[PodNameKey] = []string{sa.PodName}
    		info.Extra[PodUIDKey] = []string{sa.PodUID}
    	}
    	if sa.CredentialID != "" {
    		if info.Extra == nil {
    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[CredentialIDKey] = []string{sa.CredentialID}
    	}
    	if sa.NodeName != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    				"X-Remote-Group-2":      {"two-a", "two-b"},
    				"X-Remote-extra-1-key1": {"alfa", "bravo"},
    				"X-Remote-Extra-1-Key2": {"charlie", "delta"},
    				"X-Remote-Extra-1-":     {"india", "juliet"},
    				"X-Remote-extra-2-":     {"kilo", "lima"},
    				"X-Remote-extra-2-Key1": {"echo", "foxtrot"},
    				"X-Remote-Extra-2-key2": {"golf", "hotel"},
    			},
    		},
    
    		"extra prefix matches case-insensitive with unrelated headers": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_constraints.txt

    stdout '^$'
    
    # Enabling a tag should include files that require it.
    go list -tags=extra -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^empty.go extra.go $'
    go list -tags=extra -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^extra $'
    
    # Packages that require a tag should not be listed unless the tag is on.
    ! go list ./tagonly
    go list -tags=extra ./tagonly
    stdout m/tagonly
    
    -- go.mod --
    module m
    
    go 1.13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

                extraComp(MavenPublication) {
                    from components.java
                    groupId "extra.group"
                    artifactId "extra-comp"
                    version "extra"
                }
                extra(MavenPublication) {
                    groupId "extra.group"
                    artifactId "extra"
                    version "extra"
                }
            }
        }
    }
    """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    	}
    
    	if len(user.GetGroups()) > 1 && user.GetGroups()[1] == "extra-setter-particular-scopes" &&
    		a.GetVerb() == "impersonate" && a.GetResource() == "userextras" && a.GetSubresource() == "scopes" && a.GetName() == "scope-a" && a.GetAPIGroup() == "authentication.k8s.io" {
    		return authorizer.DecisionAllow, "", nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

        def "detects changes to source in extra source directories"() {
            buildFile << "sourceSets.main.${languageName}.srcDir 'extra'"
    
            source("class A extends B {}")
            file("extra/B.${languageName}") << "class B {}"
            file("extra/C.${languageName}") << "class C {}"
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    	}
    	nt := *t
    	// copy any *T Extra fields, to avoid aliasing
    	switch t.kind {
    	case TMAP:
    		x := *t.extra.(*Map)
    		nt.extra = &x
    	case TFORW:
    		x := *t.extra.(*Forward)
    		nt.extra = &x
    	case TFUNC:
    		x := *t.extra.(*Func)
    		nt.extra = &x
    	case TSTRUCT:
    		x := *t.extra.(*Struct)
    		nt.extra = &x
    	case TINTER:
    		x := *t.extra.(*Interface)
    		nt.extra = &x
    	case TCHAN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/constdecl.go

    const _ /* ERROR "missing init expr for _" */
    const _ = 1, 2 /* ERROR "extra init expr 2" */
    
    const _ /* ERROR "missing init expr for _" */ int
    const _ int = 1, 2 /* ERROR "extra init expr 2" */
    
    const (
    	_ /* ERROR "missing init expr for _" */
    	_ = 1, 2 /* ERROR "extra init expr 2" */
    
    	_ /* ERROR "missing init expr for _" */ int
    	_ int = 1, 2 /* ERROR "extra init expr 2" */
    )
    
    const (
    	_ = 1
    	_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top