Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 434 for sysdir (0.12 sec)

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

            buildFile << """
                def srcDir = file('src')
                // Note: task mutates inputs of transform1 just before transform1 executes
                task src1 {
                    outputs.dir(srcDir)
                    outputs.upToDateWhen { false }
                    doLast {
                        srcDir.mkdirs()
                        new File(srcDir, "src.txt").text = "123"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/install_shadow_gopath.txt

    # Tests Issue #3562
    # go get foo.io (not foo.io/subdir) was not working consistently.
    
    env GO111MODULE=off
    env GOPATH=$WORK/gopath1${:}$WORK/gopath2
    
    mkdir $WORK/gopath1/src/test
    mkdir $WORK/gopath2/src/test
    cp main.go $WORK/gopath2/src/test/main.go
    cd $WORK/gopath2/src/test
    
    ! go install
    stderr 'no install location for.*gopath2.src.test: hidden by .*gopath1.src.test'
    
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 415 bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build.go

    }
    
    // expandSrcDir expands any occurrence of ${SRCDIR}, making sure
    // the result is safe for the shell.
    func expandSrcDir(str string, srcdir string) (string, bool) {
    	// "\" delimited paths cause safeCgoName to fail
    	// so convert native paths with a different delimiter
    	// to "/" before starting (eg: on windows).
    	srcdir = filepath.ToSlash(srcdir)
    
    	chunks := strings.Split(str, "${SRCDIR}")
    	if len(chunks) < 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/groovy/build.gradle

    // ...
    // end::plugins[]
    
    repositories {
        mavenCentral()
    }
    
    group = 'org.gradle.demo'
    version = '1.0'
    
    // tag::register_variant[]
    sourceSets {
        mongodbSupport {
            java {
                srcDir 'src/mongodb/java'
            }
        }
    }
    
    // tag::register_variant_extra_jars[]
    java {
        registerFeature('mongodbSupport') {
            usingSourceSet(sourceSets.mongodbSupport)
    // end::register_variant[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 946 bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/build.gradle

            }
        }
        components {
            all {
                targetPlatform "x86"
            }
        }
    
        repositories {
            libs(PrebuiltLibraries) {
                googleTest {
                    headers.srcDir "libs/googleTest/1.7.0/include"
                    binaries.withType(StaticLibraryBinary) {
                        staticLibraryFile = file("libs/googleTest/1.7.0/lib/" + findGoogleTestCoreLibForPlatform(targetPlatform))
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1007 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/kotlin/build.gradle.kts

    // end::plugins[]
    
    repositories {
        mavenCentral()
    }
    
    group = "org.gradle.demo"
    version = "1.0"
    
    // tag::register_variant[]
    sourceSets {
        create("mongodbSupport") {
            java {
                srcDir("src/mongodb/java")
            }
        }
    }
    
    // tag::register_variant_extra_jars[]
    java {
        registerFeature("mongodbSupport") {
            usingSourceSet(sourceSets["mongodbSupport"])
    // end::register_variant[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 983 bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

            def subdir = repo.file("subdir")
            repo.workTree.listFiles().each {
                if (it.name == '.git') {
                    return
                }
                it.copyTo(subdir.file(it.name))
                it.delete()
            }
            commit = repo.commit('updated')
            mappingFor(repo, "org.test:dep", 'rootDir = "subdir"')
    
            expect:
            succeeds('assemble')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/util/build.xml

        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="compile">
            <mkdir dir="${classes.dir}"/>
            <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true"/>
        </target>
    
        <target name="package" depends="build">
            <jar destfile="${build.dir}/lib/hello-app.jar" basedir="${classes.dir}"/>
        </target>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 603 bytes
    - Viewed (0)
  9. pkg/volume/util/subpath/subpath.go

    	// subpath starts. On the other hand, Interface.CleanSubPaths must be called
    	// when the pod finishes.
    	PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error)
    
    	// SafeMakeDir creates subdir within given base. It makes sure that the
    	// created directory does not escape given base directory mis-using
    	// symlinks. Note that the function makes sure that it creates the directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 27 02:59:53 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessorTest.groovy

    class ConfigurationCacheInstrumentationProcessorTest extends Specification {
    
        @Rule
        final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
        final TestFile srcDir = temporaryFolder.createDir('src')
        final TestFile outDir = temporaryFolder.createDir('out')
        final TestFile classesDir = temporaryFolder.createDir('classes')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top