Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,594 for ridentifier (0.19 sec)

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

    	"audiences":     "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 is returned in the status.audiences field to ensure that the TokenReview server is audience...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/ComponentSpecIdentifier.java

        /**
         * The base name of this component.
         */
        String getName();
    
        /**
         * A path that uniquely identifies this component within its project.
         *
         * Implementation should attempt to produce human consumable identifiers.
         */
        Path getPath();
    
        /**
         * Returns a child of this component, with the given name.
         */
        ComponentSpecIdentifier child(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

    public interface ModelBuildingResult {
    
        /**
         * Gets the sequence of model identifiers that denote the lineage of models from which the effective model was
         * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from
         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

    public interface ModelBuilderResult {
    
        /**
         * Gets the sequence of model identifiers that denote the lineage of models from which the effective model was
         * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from
         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiOperatingSystemSupport.java

        private final String identifier;
    
        static {
            for(JansiOperatingSystemSupport osSupport : values()) {
                MAPPING.put(osSupport.identifier, osSupport);
            }
        }
    
        JansiOperatingSystemSupport(String identifier) {
            this.identifier = identifier;
        }
    
        public String getIdentifier() {
            return identifier;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top