Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,008 for locations (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            def module2File = file("module2/module2.gradle")
            failure.assertHasFileName("Build file '$module2File'")
            failure.assertHasLineNumber(5)
        }
    
        def "caches scripts applied from remote locations"() {
            server.start()
    
            given:
            root {
                'build.gradle'(this.applyFromRemote(server))
            }
            server.expect(server.get("shared.gradle").send("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("app")
        }
    
        @ToBeFixedForConfigurationCache
        def "visual studio tasks re-execute when output file locations change"() {
            app.writeSources(file("src/main"))
    
            when:
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                details == 'If you don\'t declare the normalization, outputs can\'t be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly'
                solutions == [ 'Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/writebarrier.go

    		// This isn't the object we know about at this memory state.
    		return true
    	}
    	// Mask of bits we're asking about
    	m := (uint64(1)<<(size/ptrSize) - 1) << (off / ptrSize)
    
    	if z.mask&m == m {
    		// All locations are known to be zero, so no heap pointers.
    		return false
    	}
    	return true
    }
    
    // needwb reports whether we need write barrier for store op v.
    // v must be Store/Move/Zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutor.java

                        logger.println().withStyle(StyledTextOutput.Style.Failure).println("Exiting continuous build as Gradle does not watch any file system locations.");
                        return lastResult;
                    } else {
                        cancellableOperationManager.monitorInput(operationToken -> {
                            continuousBuildTriggerHandler.wait(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                details == 'If you don\'t declare the normalization, outputs can\'t be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly'
                solutions == [ 'Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/runtime/traceback_test.go

    //go:nosplit
    //go:noinline
    func testTracebackArgs10(a, b, c, d, e int32) int {
    	// no use of any args
    	return runtime.Stack(testTracebackArgsBuf[:], false)
    }
    
    // norace to avoid race instrumentation changing spill locations.
    // nosplit to avoid preemption or morestack spilling registers.
    //
    //go:norace
    //go:nosplit
    //go:noinline
    func testTracebackArgs11a(a, b, c int32) int {
    	if a < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  8. src/time/zoneinfo.go

    // A Location maps time instants to the zone in use at that time.
    // Typically, the Location represents the collection of time offsets
    // in use in a geographical area. For many Locations the time offset varies
    // depending on whether daylight savings time is in use at the time instant.
    //
    // Location is used to provide a time zone in a printed Time value and for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

            new TarTestFixture(file("build/distributions/projectWithtarInName.tar")).assertContainsFile("projectWithtarInName/lib/projectWithtarInName.jar")
        }
    
        def "uses custom classifier in archive names and install locations"() {
            when:
            buildFile << """
                plugins {
                    id("distribution")
                }
    
                distributions {
                    main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

            then:
            rootXcodeProject.projectFile.sources.assertHasChildren(lib.files*.name)
        }
    
        @ToBeFixedForConfigurationCache
        def "honors changes to executable output file locations"() {
            requireSwiftToolChain()
    
            given:
            buildFile << """
                apply plugin: 'swift-application'
                buildDir = 'output'
                application.module = 'TestApp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
Back to top