Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for toidentifier (0.3 sec)

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

                DefaultProjectComponentSelector projectSelector = (DefaultProjectComponentSelector) selector;
                ProjectComponentIdentifier projectId = projectSelector.toIdentifier();
                LocalComponentGraphResolveState projectComponent = localComponentRegistry.getComponent(projectId);
                ModuleVersionIdentifier moduleVersionId = projectComponent.getModuleVersionId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:59 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/templates/collections.go.tmpl

    {{ .CustomImport }}
      "reflect"
    {{- range .Packages}}
    	{{.ImportName}} "{{.PackageName}}"
    {{- end}}
    )
    
    var (
    {{ range .Entries }}
    	{{ .Resource.Identifier }} = resource.Builder {
    			Identifier: "{{ .Resource.Identifier }}",
    			Group: "{{ .Resource.Group }}",
    			Kind: "{{ .Resource.Kind }}",
    			Plural: "{{ .Resource.Plural }}",
    			Version: "{{ .Resource.Version }}",
    			{{- if .Resource.VersionAliases }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirArrayOfSymbolProvider.kt

        internal val arrayOf = Name.identifier("arrayOf")
        internal val arrayTypeToArrayOfCall = run {
            StandardClassIds.primitiveArrayTypeByElementType.values + StandardClassIds.unsignedArrayTypeByElementType.values
        }.associateWith { it.correspondingArrayOfCallFqName() }
    
        private fun ClassId.correspondingArrayOfCallFqName(): Name =
            Name.identifier("${shortClassName.identifier.replaceFirstChar(Char::lowercaseChar)}Of")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Command.java

     */
    public class Command extends Message implements Serializable {
        private final UUID identifier;
        private final byte[] token;
    
        public Command(UUID identifier, byte[] token) {
            this.identifier = identifier;
            this.token = token;
        }
    
        /**
         * Returns the authentication token for this command.
         */
        public byte[] getToken() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/cache/internal/GeneratedGradleJarCache.java

        String CACHE_DISPLAY_NAME = "Generated Gradle JARs cache";
    
        /**
         * Returns the generated jar uniquely identified by {@code identifier}.
         *
         * If the jar is not found in the cache the given {@code creator} action will be invoked to create it.
         *
         * @param identifier the jar identifier (for example, {@code "api"}).
         * @param creator the action that will create the file should it not be found in the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    {{- range .Entries }}
    	{{- if and (not .Resource.Synthetic) }}
    	gvk.{{.Resource.Identifier}}: func(r runtime.Object) config.Config {
    		obj := r.(*{{ .IstioAwareClientImport }}.{{.Resource.Kind}})
    		return config.Config{
    		  Meta: config.Meta{
    		  	GroupVersionKind:  gvk.{{.Resource.Identifier}},
    		  	Name:              obj.Name,
    		  	Namespace:         obj.Namespace,
    		  	Labels:            obj.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.SuggestionsMessages.repositoryHint
    
    class BuildSrcIdentityIntegrationTest extends AbstractIntegrationSpec {
        def "includes build identifier in logging output with #display"() {
            file("buildSrc/build.gradle") << """
                println "configuring \$project.path"
                classes.doLast { t ->
                    println "classes of \$t.path"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. 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)
  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