Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,585 for Identifier (0.14 sec)

  1. 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)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

                """java""",
                "Expecting token of type RBRACE, but got IDENTIFIER ('java') instead"
            )
        }
    
        @Test
        fun `unsupported syntax - version catalog alias`() {
            assertDynamicInterpretationOf(
                """alias(libs.plugins.jmh)""",
                "Expecting token of type RBRACE, but got IDENTIFIER ('alias') instead"
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
                """
            }
            includedBuilds << buildB
        }
    
        def "includes build identifier in logging output with #display"() {
            dependency "org.test:${dependencyName}:1.0"
    
            buildB.settingsFile << settings << "\n"
            buildB.buildFile << """
                println "configuring \$project.path"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top