Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 469 for LOCATION (0.58 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultToolchainsBuilder.java

                            .read(XmlReaderRequest.builder()
                                    .inputStream(is)
                                    .location(toolchainsSource.getLocation())
                                    .strict(false)
                                    .build());
                    Location loc = e.getCause() instanceof XMLStreamException xe ? xe.getLocation() : null;
                    problems.add(new DefaultBuilderProblem(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JavaInfo.java

         */
        File getExecutable(String name) throws JavaHomeException;
    
        /**
         * The location of java.
         *
         * @return the java home location
         */
        File getJavaHome();
    
        /**
         * Returns the tools jar. May return null, for example when Jvm was created via
         * with custom jre location or if jdk is not installed.
         */
        @Nullable
        File getToolsJar();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingException.java

                writer.print(problem.getSeverity());
                writer.print("] ");
                writer.print(problem.getMessage());
                String location = problem.getLocation();
                if (!location.isEmpty()) {
                    writer.print(" @ ");
                    writer.println(location);
                }
            }
    
            return buffer.toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

                withProblem("$location: external process started")
            }
    
            where:
            snippetsFactory                      | location
            exec("getProject()").java            | "Unknown location" // TODO(mlopatkin): Fix location there
            javaexec("getProject()").java        | "Unknown location"
            exec("getExecOperations()").java     | "Unknown location"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

    @EventScope(Scope.BuildTree::class)
    interface ProblemFactory {
        /**
         * Returns a default location inferred from the calling thread's state.
         */
        fun locationForCaller(consumer: String? = null): PropertyTrace
    
        /**
         * Creates a problem with the given message and exception.
         *
         * Problem has no documentation, and a default location is inferred from the calling thread's state.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/mdo/merger.vm

                builder.${field.name}(merged);
            #if ( $locationTracking )
                if (target.get${capField}() == null) {
                    builder.location("${field.name}", source.getLocation("${field.name}"));
                } else if (merged != tgt) {
                    builder.location("${field.name}", new InputLocation(-1, -1));
                }
            #end
            }
          #elseif ( $field.to && $field.multiplicity == "*" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

     * {code metadata.bin} into its permanent immutable location. The move happens atomically, and if
     * successful, the newly created immutable workspace is returned.</li>
     * <li>If the move fails because a directory is already present in the immutable location, we assume
     * that we got into a race condition with another Gradle process, and try to reuse the newly appeared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummaryTest.kt

                summary.problemCount,
                equalTo(3)
            )
        }
    
        private
        fun buildLogicProblem(location: String, message: String) = PropertyProblem(
            PropertyTrace.BuildLogic(Describables.of(location), 1),
            StructuredMessage.build { text(message) }
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

        private void assertCanFetchClassPathForSubProjectScriptIn(String location) {
    
            withDefaultSettingsIn(location).append("""
                include("foo", "bar")
            """)
    
            def parentJar = withEmptyJar("$location/libs/parent.jar")
            def fooJar = withEmptyJar("$location/libs/foo.jar")
            def barJar = withEmptyJar("$location/libs/bar.jar")
    
            assertTrue parentJar.isFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInBuildScriptIntegrationTest.groovy

            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("${location.replace('/', File.separator)}: external process started")
            }
    
            where:
            snippetsFactory             | file                           | location
            exec().groovy               | "build.gradle"                 | "Build file 'build.gradle': line 5"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top