Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 193 for pouch (0.07 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/AbstractNativeComponentPluginTest.groovy

                exportedHeaders.srcDirs*.name == ["h3"]
            }
        }
    
        def "creates compile tasks for each non-empty executable source set"() {
            when:
            touch("src/test/$pluginName/file.o")
            touch("src/test/anotherOne/file.o")
            dsl {
                pluginManager.apply pluginClass
                model {
                    components {
                        test(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

        void antTargetsAndGradleTasksCanDependOnEachOther() {
            testFile('build.xml') << """
    <project>
        <target name='target1' depends='target2,initialize'>
            <touch file='build/target1.txt'/>
        </target>
        <target name='target2' depends='initialize'>
            <touch file='build/target2.txt'/>
        </target>
    </project>
    """
            testFile('build.gradle') << """
    ant.importBuild(file('build.xml'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/UpdateCheckManager.java

        boolean isUpdateRequired(Artifact artifact, ArtifactRepository repository);
    
        void touch(Artifact artifact, ArtifactRepository repository, String error);
    
        String getError(Artifact artifact, ArtifactRepository repository);
    
        boolean isUpdateRequired(RepositoryMetadata metadata, ArtifactRepository repository, File file);
    
        void touch(RepositoryMetadata metadata, ArtifactRepository repository, File file);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheIntegrationTest.groovy

    import org.junit.Rule
    import spock.lang.Specification
    
    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.atomic.AtomicInteger
    
    import static org.apache.commons.io.FileUtils.touch
    
    class DefaultGeneratedGradleJarCacheIntegrationTest extends Specification {
        private final static String CACHE_IDENTIFIER = 'test'
        private final static long JAR_GENERATION_TIME_MS = 2000L
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            when:
            run("work")
    
            then:
            result.assertTasksSkipped(":work")
        }
    
        def "uses the target of symlink for input directory content"() {
            file('in.txt').touch()
            def inDir = file("other").createDir()
            def inFile = inDir.file("file").createFile()
            file("in-dir").createLink("other")
    
            given:
            run("work")
            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)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/BuildSrcCrossVersionSpec.groovy

                build.forTasks("help").run()
            }
            then:
            noExceptionThrown()
        }
    
        def "buildSrc with settings file can execute standalone"() {
            buildSrc.file("settings.gradle").touch()
            when:
            withConnectionToBuildSrc { connection ->
                def build = connection.newBuild()
                build.forTasks("help").run()
            }
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

                version = '1.0'
    
                dependencies {
                    api 'org.gradle.swift:log:latest.integration'
                }
            """
            libraryPath.file("settings.gradle").touch()
            libraryRepo.commit("initial commit")
            libraryRepo.close()
        }
    
        private writeCppLogLibrary() {
            def logPath = file("log")
            def logRepo = GitFileRepository.init(logPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/scala/ScalaCompileTest.groovy

            srcDir = project.file("src")
            srcDir.mkdirs()
    
            scalaCompile = createTask(ScalaCompile)
            scalaCompile.setCompiler(scalaCompiler)
    
            FileUtils.touch(new File(srcDir, "incl/file.scala"))
            FileUtils.touch(new File(srcDir, "incl/file.java"))
        }
    
        def "default values"() {
            given:
            def compile = getCompile()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    	if x != G {
    		panic("ouch")
    		/* Notes: */
    		/* - we only look for post-dominating panic/exit, so */
    		/*   this site will on fact not have a panicpath flag */
    		/* - vet will complain about this site as unreachable */
    		callee(x)
    	}
    	if x != G {
    		callee(x)
    		if x < 100 {
    			panic("ouch")
    		}
    	}
    	if x+G == 101 {
    		if x < 100 {
    			panic("ouch")
    		}
    		callee(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top