Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 434 for sysdir (0.14 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

            outputMatches """
    Native library 'someLib'
    ------------------------
    
    Source sets
        Assembler source 'someLib:asm'
            srcDir: src/someLib/asm
        C source 'someLib:c'
            srcDir: src/someLib/c
        C++ source 'someLib:cpp'
            srcDir: src/someLib/cpp
    
    Binaries
        Shared library 'someLib:amd64:free:sharedLibrary'
            build using task: :someLibAmd64FreeSharedLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheDirectoryScanner.java

            ImmutableSortedSet.Builder<VersionSpecificCacheDirectory> builder = ImmutableSortedSet.naturalOrder();
            for (File subDir : listVersionSpecificCacheDirs()) {
                GradleVersion version = tryParseGradleVersion(subDir);
                if (version != null) {
                    builder.add(new VersionSpecificCacheDirectory(subDir, version));
                }
            }
            return builder.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 07 14:25:52 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/customizedLayout/groovy/build.gradle

            }
            resources {
                srcDirs = ['src/resources']
            }
        }
    // end::define-main[]
        test {
            java {
                srcDir 'test/java'
            }
            resources {
                srcDir 'test/resources'
            }
        }
    // tag::define-main[]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 513 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiHonorsProjectCustomizationsCrossVersionSpec.groovy

            file('build.gradle').text = '''
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    sourceSets {
        main {
            java { srcDir 'src' }
            resources { srcDir 'src' }
        }
    
        test {
            java { srcDir 'test' }
            resources { srcDir 'testResources' }
        }
    }
    '''
            //if we don't create the folders eclipse plugin will not build the classpath
            projectDir.create {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/SourceSetRendererTest.groovy

            _ * sourceDirectorySet.excludes >> []
    
            when:
            renderer.render(languageSourceSet, builder)
    
            then:
            output.value.contains("""
    srcDir: src/folder1
    srcDir: src/folder2
    """)
        }
    
        def "shows includes / excludes"() {
            given:
            1 * sourceDirectorySet.includes >> includes
            1 * sourceDirectorySet.excludes >> excludes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 08 05:52:01 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_symlink_internal.txt

    [!symlink] skip
    env GO111MODULE=off
    
    mkdir $WORK/tmp/gopath/src/dir1/internal/v
    cp p.go $WORK/tmp/gopath/src/dir1/p.go
    cp v.go $WORK/tmp/gopath/src/dir1/internal/v/v.go
    symlink $WORK/tmp/symdir1 -> $WORK/tmp/gopath/src/dir1
    env GOPATH=$WORK/tmp/gopath
    cd $WORK/tmp/symdir1
    go list -f '{{.Root}}' .
    stdout '^'$WORK/tmp/gopath'$'
    
    # All of these should succeed, not die in internal-handling code.
    go run p.go &
    go build &
    go install &
    
    wait
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 529 bytes
    - Viewed (0)
  7. src/cmd/dist/imports.go

    	if isStandard {
    		return imp
    	}
    
    	if strings.HasPrefix(srcDir, filepath.Join(goroot, "src", "cmd")) {
    		return path.Join("cmd", "vendor", imp)
    	} else if strings.HasPrefix(srcDir, filepath.Join(goroot, "src")) {
    		return path.Join("vendor", imp)
    	} else {
    		panic(fmt.Sprintf("srcDir %q not in GOOROT/src", srcDir))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 21:45:30 UTC 2019
    - 6.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/scopes/DefaultCacheScopeMapping.java

            }
        }
    
        private File getCacheDir(File rootDir, VersionStrategy versionStrategy, String subDir) {
            switch (versionStrategy) {
                case CachePerVersion:
                    return new File(rootDir, version.getVersion() + "/" + subDir);
                case SharedCache:
                    return new File(rootDir, subDir);
                default:
                    throw new IllegalArgumentException();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_nopkgs.txt

    ! stderr 'matched no packages'
    stderr '^go: example\.net/emptysubdir/subdir/\.\.\.: module example\.net/emptysubdir/subdir: reading http://.*: 404 Not Found\n\tserver response: 404 page not found\n\z'
    
    # It doesn't make sense to 'go get' a path in the standard library,
    # since the standard library necessarily can't have unresolved imports.
    #
    # TODO(#30241): Maybe that won't always be the case?
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

                    inputFiles.from($fileTree.$pattern)
                }
            """
            def srcDir = createDir('src') {
                file('foo.ok').write('')
                file('foo.fail').write('')
            }
            if (isZip) {
                srcDir.zipTo(file('src.zip'))
            }
    
            and:
            def configurationCache = newConfigurationCacheFixture()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top