Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 785 for Identifier (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/DefaultVariantArtifactResolver.java

            VariantResolveMetadata.Identifier identifier = artifacts.size() == 1
                ? new SingleArtifactVariantIdentifier(artifacts.iterator().next().getId())
                : null;
    
            VariantResolveMetadata adhoc = new DefaultVariantMetadata(
                "adhoc",
                identifier,
                Describables.of("adhoc variant for", component.getId()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/config/schema/ast/ast.go

    				} else {
    					validateFn = "validation." + validateFn
    				}
    			}
    			m.Resources[i].Validate = validateFn
    		}
    		if r.Identifier == "" {
    			r.Identifier = r.Kind
    		}
    		if seen.InsertContains(r.Identifier) {
    			return fmt.Errorf("identifier %q already registered, set a unique identifier", r.Identifier)
    		}
    	}
    
    	return nil
    }
    
    // Parse and return a yaml representation of Metadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/SymbolPointerExceptions.kt

        IllegalStateException("Could not create a symbol pointer for local symbol $identifier") {
        public constructor(klass: KClass<*>) : this(klass.java.simpleName)
    }
    
    public class UnsupportedSymbolKind(identifier: String, kind: KaSymbolKind) : IllegalStateException(
        "For symbol with kind = KaSymbolKind.${kind.name} was $identifier"
    ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 908 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentIdentifier.java

    /**
     * An opaque immutable identifier for a component instance. There are various sub-interfaces that expose specific details about the identifier.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ComponentIdentifier {
        /**
         * Returns a human-consumable display name for this identifier.
         *
         * @return Component identifier display name
         * @since 1.10
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 09 14:40:00 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/caching_object_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    type mockEncoder struct {
    	identifier     runtime.Identifier
    	expectedResult string
    	expectedError  error
    
    	callsNumber int32
    }
    
    func newMockEncoder(id, result string, err error) *mockEncoder {
    	return &mockEncoder{
    		identifier:     runtime.Identifier(id),
    		expectedResult: result,
    		expectedError:  err,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 15:26:38 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/Publication.java

        /**
         * Disables publication of a unique build identifier in Gradle Module Metadata.
         * <p>
         * The build identifier is not published by default.
         *
         * @since 6.6
         */
        void withoutBuildIdentifier();
    
        /**
         * Enables publication of a unique build identifier in Gradle Module Metadata.
         * <p>
         * The build identifier is not published by default.
         *
         * @since 6.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

            BASE,
            V20,
            V30,
            V31,
            V40
        }
    
        /**
         * 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: Fri Apr 12 10:50:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java

            return model;
        }
    
        /**
         * Gets the effective group identifier of the model.
         *
         * @return The effective group identifier of the model or an empty string if unknown, never {@code null}.
         */
        public String getGroupId() {
            return (groupId != null) ? groupId : "";
        }
    
        /**
         * Gets the effective artifact identifier of the model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory.java

            }
            ModuleVersionIdentifier identifier = byVersion.get(version);
            if (identifier == null) {
                identifier =  DefaultModuleVersionIdentifier.newId(mi, version);
                byVersion.put(version, identifier);
            }
            return identifier;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. 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)
Back to top