Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 283 for toKill (0.13 sec)

  1. okhttp/src/test/java/okhttp3/osgi/OsgiTest.kt

          }
        }
      }
    
      private fun createWorkspace(): Workspace {
        val bndDir = workspaceDir / "cnf"
        val repoDir = bndDir / "repo"
        fileSystem.createDirectories(repoDir)
        return Workspace(workspaceDir.toFile(), bndDir.name)
          .apply {
            setProperty(
              "${Constants.PLUGIN}.$REPO_NAME",
              LocalIndexedRepo::class.java.getName() +
                "; ${LocalIndexedRepo.PROP_NAME} = '$REPO_NAME'" +
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/DiagnosticClassGenerator.kt

    import java.nio.file.Path
    
    object DiagnosticClassGenerator {
        fun generate(rootPath: Path, diagnosticList: DiagnosticList, packageName: String) {
            val path = getGenerationPath(rootPath.toFile(), packageName)
            KtDiagnosticClassRenderer.render(path.resolve("KtFirDiagnostics.kt"), diagnosticList, packageName, emptySet())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 29 12:00:00 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config/builder.go

    func (b *Builder) BuildFromAndTo(fromAll echo.Callers, toAll echo.Services) *Builder {
    	b.t.Helper()
    	out := b.Copy()
    
    	systemNS := istio.ClaimSystemNamespaceOrFail(out.t, out.t)
    
    	for _, from := range fromAll {
    		for _, to := range toAll {
    			for _, s := range out.needFromAndTo {
    				out.addYAML(withParams(s, param.Params{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNodeFactory.java

            @Nullable
            private File jarFileFor(Class<?> pluginClass) {
                return clazzToFile.computeIfAbsent(pluginClass, clazz -> toFile(pluginClass.getProtectionDomain().getCodeSource().getLocation()));
            }
    
            @Nullable
            private static File toFile(@Nullable URL url) {
                if (url == null) {
                    return null;
                }
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/DefaultModuleArtifactCacheTest.groovy

            1 * cachedArtifact.cachedAt >> 42L
            1 * cachedArtifact.getDescriptorHash() >> TestHashCodes.hashCodeFrom(42)
            1 * cachedArtifact.getCachedFile() >> commonRootPath.resolve("file.txt").toFile()
    
            1 * encoder.writeString("file.txt")
        }
    
        def "value serializer can expand relative path"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

            String identity = "test-entity";
            Path targetOutputDirectory = Files.createTempDirectory("target-output");
            ExampleEntity targetEntity = new ExampleEntity(identity, targetOutputDirectory.toFile());
    
            // Try to load a non-existent entity
            buildCacheController.load(cacheKey, targetEntity)
                .ifPresent(__ -> {
                    throw new RuntimeException("Should have been a miss");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/Jdk7FileCanonicalizer.java

        @SuppressWarnings("Since15")
        @Override
        public File canonicalize(File file) throws FileException {
            try {
                return file.toPath().toRealPath().toFile();
            } catch (IOException e) {
                throw new FileException(String.format("Could not canonicalize file %s.", file), e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/ResolveFile.java

                // drive-relative Windows path
                return file.getAbsoluteFile();
            } else {
                return Paths.get(baseDirectory, file.getPath()).normalize().toFile();
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/NullRemoteBuildCacheServiceHandle.java

            return null;
        }
    
        @Override
        public boolean canLoad() {
            return false;
        }
    
        @Override
        public Optional<BuildCacheLoadResult> maybeLoad(BuildCacheKey key, File toFile, Function<File, BuildCacheLoadResult> unpackFunction) {
            return Optional.empty();
        }
    
        @Override
        public boolean canStore() {
            return false;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileResolutionIntegrationTest.groovy

        def "file conversion works with java.nio.file.Path"() {
            buildFile """
    java.nio.file.Path fAsPath = buildDir.toPath().resolve('testdir').toAbsolutePath()
    def f = file(fAsPath)
    assert f == fAsPath.toFile()
    """
    
            expect:
            succeeds()
        }
    
        def "file conversion works with Provider of supported types"() {
            buildFile << """
    def provider = project.provider { $expression }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 19:24:20 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top