Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 565 for ridentifier (0.18 sec)

  1. staging/src/k8s.io/api/authentication/v1/types.go

    	// Audiences are audience identifiers chosen by the authenticator that are
    	// compatible with both the TokenReview and token. An identifier is any
    	// identifier in the intersection of the TokenReviewSpec audiences and the
    	// token's audiences. A client of the TokenReview API that sets the
    	// spec.audiences field should validate that a compatible audience identifier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/go/types/api.go

    	// expression x.f is found only in the Selections map, the
    	// identifier z in a variable declaration 'var z int' is found
    	// only in the Defs map, and identifiers denoting packages in
    	// qualified identifiers are collected in the Uses map.
    	Types map[ast.Expr]TypeAndValue
    
    	// Instances maps identifiers denoting generic types or functions to their
    	// type arguments and instantiated type.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    	// expression x.f is found only in the Selections map, the
    	// identifier z in a variable declaration 'var z int' is found
    	// only in the Defs map, and identifiers denoting packages in
    	// qualified identifiers are collected in the Uses map.
    	Types map[syntax.Expr]TypeAndValue
    
    	// If StoreTypesInSyntax is set, type information identical to
    	// that which would be put in the Types map, will be set in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    		// With options change, we should recompute the identifier.
    		// Clearing this will trigger lazy recompute when needed.
    		e.identifier = ""
    	}
    
    	return e.encoder.Encode(result, w)
    }
    
    // Identifier implements runtime.Encoder interface.
    func (e *watchEmbeddedEncoder) Identifier() runtime.Identifier {
    	if e.identifier == "" {
    		e.identifier = e.embeddedIdentifier()
    	}
    	return e.identifier
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. cmd/sts-datatypes.go

    	Provider string `xml:",omitempty"`
    
    	// The unique user identifier that is returned by the identity provider.
    	// This identifier is associated with the Token that was submitted
    	// with the AssumeRoleWithWebIdentity call. The identifier is typically unique to
    	// the user and the application that acquired the WebIdentityToken (pairwise identifier).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  6. src/go/parser/resolver.go

    	}
    }
    
    // The unresolved object is a sentinel to mark identifiers that have been added
    // to the list of unresolved identifiers. The sentinel is only used for verifying
    // internal consistency.
    var unresolved = new(ast.Object)
    
    // If x is an identifier, resolve attempts to resolve x by looking up
    // the object it denotes. If no object is found and collectUnresolved is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    	if len(gv.Group) > 0 {
    		return gv.Group + "/" + gv.Version
    	}
    	return gv.Version
    }
    
    // Identifier implements runtime.GroupVersioner interface.
    func (gv GroupVersion) Identifier() string {
    	return gv.String()
    }
    
    // KindForGroupVersionKinds identifies the preferred GroupVersionKind out of a list. It returns ok false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	KindForGroupVersionKinds(kinds []schema.GroupVersionKind) (target schema.GroupVersionKind, ok bool)
    	// Identifier returns string representation of the object.
    	// Identifiers of two different encoders should be equal only if for every input
    	// kinds they return the same result.
    	Identifier() string
    }
    
    // Identifier represents an identifier.
    // Identitier of two different objects should be equal if and only if for every
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    const (
    	namespace = "apiserver"
    	subsystem = "admission"
    
    	// WebhookRejectionCallingWebhookError identifies a calling webhook error which causes
    	// a webhook admission to reject a request
    	WebhookRejectionCallingWebhookError WebhookRejectionErrorType = "calling_webhook_error"
    	// WebhookRejectionAPIServerInternalError identifies an apiserver internal error which
    	// causes a webhook admission to reject a request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
                """
            }
            includedBuilds << buildB
        }
    
        def "includes build identifier in logging output with #display"() {
            dependency "org.test:${dependencyName}:1.0"
    
            buildB.settingsFile << settings << "\n"
            buildB.buildFile << """
                println "configuring \$project.path"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top