Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,008 for locations (0.16 sec)

  1. src/log/slog/value.go

    	u := uint64(0)
    	if v {
    		u = 1
    	}
    	return Value{num: u, any: KindBool}
    }
    
    type (
    	// Unexported version of *time.Location, just so we can store *time.Locations in
    	// Values. (No user-provided value has this type.)
    	timeLocation *time.Location
    
    	// timeTime is for times where UnixNano is undefined.
    	timeTime time.Time
    )
    
    // TimeValue returns a [Value] for a [time.Time].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/time/zoneinfo_read.go

    	return loadTzinfoFromDirOrZip(source, name)
    }
    
    // loadLocation returns the Location with the given name from one of
    // the specified sources. See loadTzinfo for a list of supported sources.
    // The first timezone data matching the given name that is successfully loaded
    // and parsed is returned as a Location.
    func loadLocation(name string, sources []string) (z *Location, firstErr error) {
    	for _, source := range sources {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            }
        }
    
        private void exitsContinuousBuildSinceNotWatchingAnyLocations() {
            assert !gradle.running
            assert output.contains("Exiting continuous build as Gradle does not watch any file system locations.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            file("output/obj/main/debug").assertIsDir()
            sharedLibrary("output/lib/main/debug/hello").assertExists()
        }
    
        @ToBeFixedForConfigurationCache
        def "honors changes to task output locations"() {
            given:
            settingsFile << "rootProject.name = 'hello'"
            def lib = new CppLib()
            lib.writeToProject(testDirectory)
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                }
            }
    
            @Finalize
            void applyHeaderSourceSetConventions(@Each HeaderExportingSourceSet headerSourceSet) {
                // Only apply default locations when none explicitly configured
                if (headerSourceSet.getExportedHeaders().getSourceDirectories().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         * @return whether to use strict resource lifecycle
         */
        boolean isStrictResourceLifecycle ();
    
    
        /**
         * This is solely intended for debugging
         * 
         * @return whether to track the locations from which resources were created
         */
        boolean isTraceResourceUsage ();
    
    
        /**
         * @param command
         * @return whether to allow creating compound requests with that command
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/decompose.go

    		loc := f.Names[d.locIndex]
    		vals := f.NamedValues[*loc]
    		l := len(vals) - 1
    		if l > 0 {
    			vals[d.valIndex] = vals[l]
    		}
    		vals[l] = nil
    		f.NamedValues[*loc] = vals[:l]
    	}
    	// Delete locations with no values attached.
    	end := len(f.Names)
    	for i := len(f.Names) - 1; i >= 0; i-- {
    		loc := f.Names[i]
    		vals := f.NamedValues[*loc]
    		last := len(vals)
    		for j := len(vals) - 1; j >= 0; j-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            def location = new File(".").absoluteFile
            when:
            render implicitDependency {
                consumer('consumer')
                producer('producer')
                at(location)
                includeLink()
            }
    
            then:
            outputEquals """
    Gradle detected a problem with the following location: '${location}'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    .Processing non-source files for a source set
    image::java-sourcesets-process-resources.png[]
    
    As before, the shaded boxes represent properties of the source set, which in this case comprises the locations of the resource files and where they are copied to.
    
    In addition to the `main` source set, the Java Library Plugin defines a `test` source set that represents the project's tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    //
    // See https://msdn.microsoft.com/en-us/library/windows/desktop/ms684179(v=vs.85).aspx
    //
    // If name is not an absolute path, LoadLibraryEx searches for the DLL
    // in a variety of automatic locations unless constrained by flags.
    // See: https://msdn.microsoft.com/en-us/library/ff919712%28VS.85%29.aspx
    func loadLibraryEx(name string, system bool) (*DLL, error) {
    	loadDLL := name
    	var flags uintptr
    	if system {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
Back to top