Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,594 for ridentifier (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    	}
    	return ident, true
    }
    
    var unexpandMatcher = regexp.MustCompile(`(_{2}[^_]+_{2})`)
    
    // Unescape unescapes an CEL identifier containing the escape sequences described in Escape, or return false if the
    // string contains invalid escape sequences. The escaped input is expected to be a valid CEL identifier, but is
    // not checked.
    func Unescape(escaped string) (string, bool) {
    	ok := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectComponentSelector.java

        }
    
        @Override
        public boolean matchesStrictly(ComponentIdentifier identifier) {
            assert identifier != null : "identifier cannot be null";
    
            if (identifier instanceof ProjectComponentIdentifier) {
                ProjectComponentIdentifierInternal projectComponentIdentifier = (ProjectComponentIdentifierInternal) identifier;
                return projectComponentIdentifier.getIdentityPath().equals(identityPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ProjectComponentIdentifier.java

    /**
     * An identifier for a component instance that is built as part of the current build.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    @HasInternalProtocol
    public interface ProjectComponentIdentifier extends ComponentIdentifier {
        /**
         * Identifies the build that contains the project that produces this component.
         *
         * @return The build identifier
         */
        BuildIdentifier getBuild();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/go/parser/resolver_test.go

    	"testing"
    )
    
    // TestResolution checks that identifiers are resolved to the declarations
    // annotated in the source, by comparing the positions of the resulting
    // Ident.Obj.Decl to positions marked in the source via special comments.
    //
    // In the test source, any comment prefixed with '=' or '@' (or both) marks the
    // previous token position as the declaration ('=') or a use ('@') of an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectDependencyResolver.java

                }
            }
        }
    
        @Override
        public void resolve(ComponentIdentifier identifier, ComponentOverrideMetadata componentOverrideMetadata, final BuildableComponentResolveResult result) {
            if (isProjectModule(identifier)) {
                ProjectComponentIdentifier projectId = (ProjectComponentIdentifier) identifier;
                LocalComponentGraphResolveState component = localComponentRegistry.getComponent(projectId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/variants/ComponentIdentifier.java

     * limitations under the License.
     */
    
    package org.gradle.operations.dependencies.variants;
    
    /**
     * A marker interface for identifiers for a component instance.
     * <p>
     * There are various sub-interfaces that expose specific details about the identifier.
     *
     * @since 8.1
     */
    public interface ComponentIdentifier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 895 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top