Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 859 for locations (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

                definition.id.group.name == "deprecation"
                definition.severity == Severity.WARNING
                locations.size() == 2
                (locations[0] as LineInFileLocation).path == "build file '$buildFile.path'" // FIXME: the path should not contain a prefix nor extra quotes
                (locations[1] as LineInFileLocation).path == "build file '$buildFile.path'"
                additionalData instanceof GeneralData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Uses the “`mavenCentral`” dependency repository
    * Uses https://junit.org/junit4/[JUnit 4] for testing
    * Has directories in the conventional locations for source code
    * Contains a sample class and unit test, if there are no existing source or test files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    		functions[f.ID] = f
    	}
    	locations := make(map[uint64]*Location, len(p.Location))
    	for _, l := range p.Location {
    		if l == nil {
    			return fmt.Errorf("profile has nil location")
    		}
    		if l.ID == 0 {
    			return fmt.Errorf("found location with reserved id=0")
    		}
    		if locations[l.ID] != nil {
    			return fmt.Errorf("multiple locations with same id: %d", l.ID)
    		}
    		locations[l.ID] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplier.java

                            matcher.appendTail(resolvedValue);
                            locations.add(resolvedValue.toString());
                        }
                    }
                    return locations.stream()
                        .map(jdkHome -> InstallationLocation.autoDetected(new File(jdkHome), getSourceName()))
                        .collect(Collectors.toSet());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/starttime.go

    // It can be used to consistently use the same start time instead of calling time.Now()
    // in multiple locations and ending up with minor time deviations.
    var startTime time.Time
    
    func init() {
    	startTime = time.Now()
    }
    
    // StartTimeUTC returns startTime with its location set to UTC.
    func StartTimeUTC() time.Time {
    	return startTime.UTC()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

        ProblemDefinition getDefinition();
    
        @Nullable
        String getContextualLabel();
    
        /**
         * Returns solutions and advice that contain context-sensitive data, e.g. the message contains references to variables, locations, etc.
         */
        List<String> getSolutions();
    
        /**
         * A long description detailing the problem.
         * <p>
         * Details can elaborate on the problem, and provide more information about the problem.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        ImmutableSet<ClassPath.LocationInfo> locations =
            ClassPath.locationsFrom(getClass().getClassLoader());
        assertThat(locations).isNotEmpty();
        for (ClassPath.LocationInfo location : locations) {
          ImmutableSet<ResourceInfo> resources = location.scanResources();
          assertThat(location.scanResources()).containsExactlyElementsIn(resources);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            def currentJavaHomePath = currentJavaHome?.location ?: Jvm.current().javaHome
    
            return new DaemonJavaToolchainQueryService(createInstallationRegistry(installations, detector), currentJavaHomePath)
        }
    
        private def createInstallationRegistry(Collection<String> locations, JvmMetadataDetector detector) {
            def installations = locations.collect {
                def location = locationFor(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplier.java

        LinuxInstallationSupplier(OperatingSystem os, File... roots) {
            this.roots = roots;
            this.os = os;
        }
    
        @Override
        public String getSourceName() {
            return "Common Linux Locations";
        }
    
        @Override
        public Set<InstallationLocation> get() {
            if (os.isLinux()) {
                return Arrays.stream(roots)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                                        // This is similar to what AGP does when performing JdkImageTransform
                                        transformed.getElements().map(
                                                locations -> locations.stream()
                                                        .map(FileSystemLocation::getAsFile)
                                                        .collect(Collectors.toList())
                                        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top