Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 540 for toidentifier (0.28 sec)

  1. 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)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

                    }
                }
            """
            repoB.file("build.gradle") << """
                dependencies { implementation 'org.test:${moduleName}:1.2' }
            """
        }
    
        def "includes build identifier in error message on failure to resolve dependencies of build with #display"() {
            repoC.file("settings.gradle") << """
                ${settings}
            """
            repoC.file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

                ResolvedCoordinates identifier;
                if (dependency instanceof DefaultProjectDependencyConstraint) {
                    identifier = componentDependencyResolver.resolveComponentCoordinates((DefaultProjectDependencyConstraint) dependency);
                } else {
                    identifier = componentDependencyResolver.resolveComponentCoordinates(dependency);
                    if (identifier == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/StoringInterpretationSchemaBuilder.kt

            }
    
        private
        fun storeSchemaResult(identifier: String, analysisSchema: AnalysisSchema) {
            val file = schemaFile(identifier)
            file.parentFile.mkdirs()
            file.writeText(SchemaSerialization.schemaToJsonString(analysisSchema))
        }
    
        private
        fun schemaFile(identifier: String) =
            schemaStoreLocationFor().resolve("$identifier.dcl.schema")
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

                        }
                    }
                }
            """
            buildFile << """
                dependencies { implementation 'org.test:${moduleName}:1.2' }
            """
        }
    
        def "includes build identifier in error message on failure to resolve dependencies of build with #display"() {
            repo.file("settings.gradle") << """
                ${settings}
            """
            repo.file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/go/types/resolver_test.go

    	}
    
    	// 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. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemReporter.java

            }
        }
    
        /**
         * Reports a problem with an explicit operation identifier.
         * <p>
         * The operation identifier should not be null,
         * otherwise the behavior will be defined by the used {@link ProblemEmitter}.
         *
         * @param problem The problem to report.
         * @param id The operation identifier to associate with the problem.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java

            return result;
        }
    
        /**
         * Gets the identifier of the POM whose effective model could not be built. The general format of the identifier is
         * {@code <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the
         * exception is thrown so this information is merely meant to assist the user.
         *
         * @return The identifier of the POM or an empty string if not known, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            if (jvmNameFromAccessor != null) {
                return jvmNameFromAccessor
            }
    
            val identifier = property.name.identifier
            return if (isSetter) JvmAbi.setterName(identifier) else JvmAbi.getterName(identifier)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

    public interface ProjectBuilderResult {
    
        /**
         * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
         * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception
         * is thrown so this information is merely meant to assist the user.
         *
         * @return the identifier of the project or an empty string if not known, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top