Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 321 for ridentifier (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * A node identifier that uniquely identifies a variant within a component by the variant's name.
     *
     * Note: Generally, variants should be identified by their attributes and capabilities, as the name
     * is more of a human-readable identifier.
     */
    public class ComponentVariantNodeIdentifier implements NodeIdentifier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

            val testFileText = FileUtil.loadFile(filePath.toFile())
            val identifier = testFileText.lineSequence().first { line ->
                SymbolData.identifiers.any { identifier ->
                    line.startsWith(identifier) || line.startsWith("// $identifier")
                }
            }
            return SymbolData.create(identifier.removePrefix("// "))
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/go/types/resolver_test.go

    		t.Errorf("simultaneous uses/defs = %s, want %s", got, want)
    	}
    
    	// any left-over identifiers didn't exist in the source
    	for x := range uses {
    		t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
    	}
    	for x := range defs {
    		t.Errorf("%s: identifier %s not present in source", fset.Position(x.Pos()), x.Name)
    	}
    
    	// TODO(gri) add tests to check ImplicitObj callbacks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentVariantIdentifier.java

     */
    
    package org.gradle.api.artifacts;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * Identifies a variant of a component by component identifier and variant name.
     *
     * @since 6.0
     */
    public interface ComponentVariantIdentifier {
    
        /**
         * Returns the component identifier.
         */
        ComponentIdentifier getId();
    
        /**
         * Returns the variant name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

        /**
         * Returns the identifier for this component.
         */
        ComponentIdentifier getId();
    
        /**
         * Returns the module version identifier for this component. Currently, this reflects the (group, module, version) that was used to request this component.
         *
         * <p>This is a legacy identifier and is here while we transition the meta-data away from ivy-like
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

            return foreignIdentifiedComponents.computeIfAbsent(projectIdentifier, this::copyComponentWithForeignId);
        }
    
        /**
         * Copes the component identified by {@code projectIdentifier}, except with its identifier replaced with the foreign counterpart.
         *
         * <p>Eventually, in Gradle 9.0, when {@link BuildIdentifier#isCurrentBuild()} is removed, all this logic can disappear.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    //
    //	anyExtendedKeyUsage OBJECT IDENTIFIER ::= { id-ce-extKeyUsage 0 }
    //
    //	id-kp OBJECT IDENTIFIER ::= { id-pkix 3 }
    //
    //	id-kp-serverAuth             OBJECT IDENTIFIER ::= { id-kp 1 }
    //	id-kp-clientAuth             OBJECT IDENTIFIER ::= { id-kp 2 }
    //	id-kp-codeSigning            OBJECT IDENTIFIER ::= { id-kp 3 }
    //	id-kp-emailProtection        OBJECT IDENTIFIER ::= { id-kp 4 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top