Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 785 for Identifier (0.22 sec)

  1. staging/src/k8s.io/api/authentication/v1beta1/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: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

         */
        int getColumnNumber();
    
        /**
         * Gets the identifier of the model from which the problem originated. While the general form of this identifier is
         * <code>groupId:artifactId:version</code> the returned identifier need not be complete. The identifier is derived
         * from the information that is available at the point the problem occurs and as such merely serves as a best effort
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ModuleComponentIdentifier.java

         *
         * @return Component version
         * @since 1.10
         */
        String getVersion();
    
        /**
         * The module identifier of the component. Returns the same information
         * as {@link #getGroup()} and {@link #getModule()}.
         *
         * @return the module identifier
         *
         * @since 4.9
         */
        ModuleIdentifier getModuleIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

                    }
                }
            """
            repoB.file("build.gradle") << """
                dependencies { implementation 'org.test:${moduleName}:1.2' }
            """
        }
    
        def "includes build identifier in error message on failure to resolve dependencies of build with #display"() {
            repoC.file("settings.gradle") << """
                ${settings}
            """
            repoC.file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleNotFoundException.java

         *
         * @param lifecycleId The identifier of the lifecycle that could not be located, may be {@code null}.
         */
        public LifecycleNotFoundException(String lifecycleId) {
            super("Unknown lifecycle " + lifecycleId);
            this.lifecycleId = (lifecycleId != null) ? lifecycleId : "";
        }
    
        /**
         * Gets the identifier of the lifecycle that was not found.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedVariant.java

        /**
         * An identifier for this variant, if available. A variant may not have an identifier when it represents some ad hoc set of artifacts, for example artifacts declared on a dependency
         * using {@link org.gradle.api.artifacts.ModuleDependency#artifact(Action)} or where individual artifacts have been excluded from the variant.
         */
        @Nullable
        VariantResolveMetadata.Identifier getIdentifier();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/scheme.go

    	// fallback to other encoders here.
    	return unstructured.UnstructuredJSONScheme.Encode(obj, w)
    }
    
    // Identifier implements runtime.Encoder interface.
    func (dynamicCodec) Identifier() runtime.Identifier {
    	return unstructured.UnstructuredJSONScheme.Identifier()
    }
    
    // UnstructuredPlusDefaultContentConfig returns a rest.ContentConfig for dynamic types.  It includes enough codecs to act as a "normal"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 15:58:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/BuildIdentifier.java

     * limitations under the License.
     */
    
    package org.gradle.api.artifacts.component;
    
    /**
     * Identifies a Gradle build. The identifier is unique within a Gradle invocation, so for example, each included build will have a different identifier.
     */
    public interface BuildIdentifier {
    
        /**
         * Absolute build path of the build within the Gradle invocation.
         *
         * @since 8.2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 16:28:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. test/fixedbugs/bug388.go

    // Issue 2231
    
    package main
    import "runtime"
    
    func foo(runtime.UintType, i int) {  // ERROR "cannot declare name runtime.UintType|mixed named and unnamed|undefined identifier"
    	println(i, runtime.UintType) // GCCGO_ERROR "undefined identifier"
    }
    
    func qux() {
    	var main.i	// ERROR "unexpected [.]|expected type"
    	println(main.i)
    }
    
    func corge() {
    	var foo.i int  // ERROR "unexpected [.]|expected type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 636 bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authentication/v1/generated.proto

      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top