Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 5,298 for somme (0.27 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

                } catch(IllegalStateException e) {
                    println("get elements failed with: " + e.message)
                }
    
                thing.prop.from = "some-file-1"
    
                afterEvaluate {
                    thing.prop.from = ["some-file-2"]
                    try {
                        thing.prop.files
                    } catch(IllegalStateException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

                def outputDir = layout.buildDirectory.dir(providers.provider { childDirName })
                println "src dir 1: " + srcDir.get()
                println "output dir 1: " + outputDir.get()
                buildDir = "output/some-dir"
                childDirName = "other-child"
                println "src dir 2: " + srcDir.get()
                println "output dir 2: " + outputDir.get()
    """
    
            when:
            run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. src/container/ring/example_test.go

    	fmt.Println(r.Len())
    
    	// Output:
    	// 4
    }
    
    func ExampleRing_Next() {
    	// Create a new ring of size 5
    	r := ring.New(5)
    
    	// Get the length of the ring
    	n := r.Len()
    
    	// Initialize the ring with some integer values
    	for i := 0; i < n; i++ {
    		r.Value = i
    		r = r.Next()
    	}
    
    	// Iterate through the ring and print its contents
    	for j := 0; j < n; j++ {
    		fmt.Println(r.Value)
    		r = r.Next()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/GradleConfigurabilityIntegrationSpec.groovy

        }
    
        def "honours jvm args specified in gradle.properties"() {
            given:
            file("gradle.properties") << "org.gradle.jvmargs=-Dsome-prop=some-value -Xmx64m"
    
            expect:
            buildSucceeds """
    assert providers.systemProperty('some-prop').get() == 'some-value'
    assert java.lang.management.ManagementFactory.runtimeMXBean.inputArguments.contains('-Xmx64m')
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                            assert defaultArtifacts.collect { it.id.displayName }  == ['lib.jar (project :lib)', 'lib-util.jar', 'ui.jar (project :ui)', 'some-jar-1.0.jar (org:test:1.0)']
    
                            assert optionalFiles.collect { it.name } == ['lib.jar', 'lib-util.jar', 'ui.jar', 'some-jar-1.0.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

     *    .forProjectDirectory(new File("some-folder"))
     *    .connect();
     *
     * try {
     *    BuildLauncher build = connection.newBuild();
     *
     *    //select tasks to run:
     *    build.forTasks("clean", "test");
     *
     *    //include some build arguments:
     *    build.withArguments("-i", "--project-dir", "some-project-dir");
     *
     *    //configure the standard input:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

        }
    
        def "outputs context in javadocs"() {
            def context = "some plugin"
            def innerContext = "some inner plugin"
            when:
            generate {
                description.set("Some description for tests")
                withContext(context) {
                    library("some-alias", 'g:a:v')
                    bundle("b0Bundle", ["some-alias"])
                    withContext(innerContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

        def fileSystemSupport = new DefaultTarPackerFileSystemSupport(deleter)
    
        def "parent directory is created for output file"() {
            def targetOutputFile = temporaryFolder.file("build/some-dir/output.txt")
            targetOutputFile << "Some data"
    
            when:
            fileSystemSupport.ensureDirectoryForTree(FILE, targetOutputFile)
    
            then:
            targetOutputFile.parentFile.assertIsEmptyDir()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.mainComponent.baseName == 'some-app'
            project.mainComponent.binaries.size() == 2
    
            def debugBinary = project.mainComponent.binaries[0]
            debugBinary instanceof CppExecutable
            debugBinary.name == 'mainDebug'
            debugBinary.variantName == 'debug'
            debugBinary.baseName == 'some-app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_compile_multi_pkg.txt

    # prior to the fix for that issue, it occasionally failed with ETXTBSY when
    # run on Unix platforms.
    
    go test -c -o $WORK/some/nonexisting/directory/ ./pkg/...
    exists -exec $WORK/some/nonexisting/directory/pkg1.test$GOEXE
    exists -exec $WORK/some/nonexisting/directory/pkg2.test$GOEXE
    
    go test -c ./pkg/...
    exists -exec pkg1.test$GOEXE
    exists -exec pkg2.test$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top