Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 79 for subdir (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            file("in-dir").createDir()
            def outDir = file("out-dir")
            def copy = file("other")
    
            given:
            run("work")
            run("work")
            result.assertTasksSkipped(":work")
    
            when:
            Files.move(outDir.toPath(), copy.toPath(), StandardCopyOption.ATOMIC_MOVE)
            outDir.deleteDir()
            outDir.createLink(copy)
    
            run("work")
    
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/SystemLibraryDiscovery.java

        public String[] compilerProbeArgs(NativePlatformInternal target) {
            if (!target.getOperatingSystem().isMacOsX()) {
                return new String[0];
            }
            File sdkDir = macOSSdkPathLocator.find();
            return new String[]{"-isysroot", sdkDir.getAbsolutePath()};
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.GroovyCompileOptions.xml

                </tr>
                <tr>
                    <td>parameters</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>stubDir</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>fileExtensions</td>
                    <td><literal>["java", "groovy"]</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocator.java

        boolean isValidComponentIncludeDir(File includeDir) {
            return new File(includeDir, "io.h").exists();
        }
    
        @Override
        boolean isValidComponentLibDir(File libDir) {
            for (String platform : PLATFORMS) {
                if (!new File(libDir, platform + "/libucrt.lib").exists()) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testfortran/fortran_test.go

    		if err != nil {
    			t.Errorf("error invoking %s: %s", fc, err)
    		}
    		libDir := filepath.Dir(string(libPath))
    		cgoLDFlags := os.Getenv("CGO_LDFLAGS")
    		cgoLDFlags += " -L " + libDir
    		if runtime.GOOS != "aix" {
    			cgoLDFlags += " -Wl,-rpath," + libDir
    		}
    		t.Logf("CGO_LDFLAGS=%s", cgoLDFlags)
    		os.Setenv("CGO_LDFLAGS", cgoLDFlags)
    
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. settings.gradle.kts

    val localProperties = Properties().apply {
      val file = File("local.properties")
      if (file.exists()) {
        load(file.inputStream())
      }
    }
    val sdkDir = localProperties.getProperty("sdk.dir")
    if ((androidHome != null || sdkDir != null) && !isKnownBrokenIntelliJ()) {
      include(":okhttp-android")
      include(":android-test")
      include(":android-test-app")
    }
    
    enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Apr 14 14:24:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocator.java

        boolean isValidComponentIncludeDir(File includeDir) {
            return new File(includeDir, "windows.h").exists();
        }
    
        @Override
        boolean isValidComponentLibDir(File libDir) {
            for (String platform : PLATFORMS) {
                if (!new File(libDir, platform + "/kernel32.lib").exists()) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            def excludedFile = rootDir.file("subdir1/a/b/c.html").createFile()
            def notUnderRoot = temporaryFolder.createDir("root2").file("a.txt").createFile()
            def doesNotExist = rootDir.file("b.txt")
    
            when:
            def patterns = new PatternSet()
            patterns.include("**/*.txt")
            patterns.exclude("subdir1/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue54912.go

    // rundir
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:26:34 UTC 2022
    - 187 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/scripts/process-log.groovy

            String opName = line.contains('"name": "allOf"') ?  'allOf' : 'anyOf'
            File outDir = opName == 'allOf' ? allOfDir : anyOfDir
            def sorted = sort(line)
            String opNameWithHash = "${opName}-${sorted.hashCode()}"
    
            Counter counter = opCounters[opNameWithHash]
            counter.inc()
    
            File mergeOp = new File(outDir, "${counter.formattedId}-${opName}-${counter.counter}.json")
            if (mergeOp.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top