Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 437 for locations (0.44 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessor.java

                return createBuildOperationDetails(location);
            }
        }
    
        private class MetadataOperation implements CallableBuildOperation<ExternalResourceMetaData> {
            private final ExternalResourceName location;
            private final boolean revalidate;
    
            public MetadataOperation(ExternalResourceName location, boolean revalidate) {
                this.location = location;
                this.revalidate = revalidate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/StaxLocation.java

    import org.apache.maven.api.services.xml.Location;
    
    public class StaxLocation implements Location {
    
        private final javax.xml.stream.Location location;
    
        public static Location getLocation(Exception e) {
            return toLocation(e instanceof XMLStreamException xe ? xe.getLocation() : null);
        }
    
        public static Location toLocation(javax.xml.stream.Location location) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

            request.setParameter("geo.location.1.point", "34,150");
            request.setParameter("geo.location.1.distance", "10km");
            request.setParameter("geo.location.2.point", "35,151");
            request.setParameter("geo.location.2.distance", "1km");
    
            final GeoInfo geoInfo = new GeoInfo(request);
            String result =
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/InstallationLocation.java

        public static InstallationLocation userDefined(File location, String source) {
            return new InstallationLocation(location, source, false, false);
        }
    
        public static InstallationLocation autoDetected(File location, String source) {
            return new InstallationLocation(location, source, true, false);
        }
    
        public static InstallationLocation autoProvisioned(File location, String source) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

        def location = new ExternalResourceName(new URI("https://location/thing.jar"))
    
        def "returns null when resource does not exist"() {
            expectReadBuildOperation(0)
    
            when:
            def result = accessor.withContent(location, false, action)
    
            then:
            result == null
    
            and:
            1 * delegate.withContent(location, false, _) >> null
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceUploaderTest.groovy

                assert descriptor.name == "Upload https://location/thing.jar"
                assert descriptor.displayName == "Upload https://location/thing.jar"
                assert descriptor.progressDisplayName == "thing.jar"
    
                assert descriptor.details instanceof ExternalResourceWriteBuildOperationType.Details
                assert descriptor.details.location == location.getUri().toASCIIString()
                action.run(context)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                            .goals(List.of(goal))
                            .configuration(mojo.getConfiguration())
                            .location("", location)
                            .location("id", location)
                            .location("phase", location)
                            .location("goals", location)
                            .build();
                    execs.add(execution);
    
                    if (mojo.getDependencies() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterException.java

        private final Location location;
    
        /**
         * @param message the message for the exception
         * @param e the exception itself
         */
        public XmlWriterException(String message, Location location, Exception e) {
            super(message, e);
            this.location = location;
        }
    
        public Location getLocation() {
            return location;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/project-with-source/build.xml

    <project>
        <property name="lib.dir" location="lib/test"/>
    
        <property name="build.dir" location="ant-build"/>
        <property name="src.dir" location="src/main/java"/>
        <property name="test.src.dir" location="src/test/java"/>
        <property name="classes.dir" location="\${build.dir}/classes"/>
        <property name="test.classes.dir" location="\${build.dir}/test-classes"/>
        <property name="test.reports.dir" location="\${build.dir}/test-reports"/>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/junit-xml-results/groovy/build.gradle

    dependencies {
        testImplementation 'junit:junit:4.13'
    }
    
    // tag::configure-location-task[]
    test {
        reports {
            junitXml.outputLocation = layout.buildDirectory.dir("test-junit-xml")
        }
    }
    // end::configure-location-task[]
    
    // tag::configure-location-convention[]
    java.testResultsDir = layout.buildDirectory.dir("junit-xml")
    // end::configure-location-convention[]
    
    // tag::configure-content[]
    test {
        reports {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 786 bytes
    - Viewed (0)
Back to top