Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for absPath (0.36 sec)

  1. src/time/zoneinfo.go

    		return "", 0, 0, 0, false, false
    	}
    	s = s[1:]
    	endRule, s, ok = tzsetRule(s)
    	if !ok || len(s) > 0 {
    		return "", 0, 0, 0, false, false
    	}
    
    	year, _, _, yday := absDate(uint64(sec+unixToInternal+internalToAbsolute), false)
    
    	ysec := int64(yday*secondsPerDay) + sec%secondsPerDay
    
    	// Compute start of year in seconds since Unix epoch.
    	d := daysSinceEpoch(year)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

        }
    
        public static List<Object> flatten(Collection<Object> elements) {
            return flatten(elements, new ArrayList<Object>());
        }
    
        public static String asPath(Iterable<?> collection) {
            return CollectionUtils.join(File.pathSeparator, collection);
        }
    
        public static List<String> prefix(String prefix, Collection<String> strings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/time/format.go

    		s += string(buf)
    	}
    	return s
    }
    
    // GoString implements [fmt.GoStringer] and formats t to be printed in Go source
    // code.
    func (t Time) GoString() string {
    	abs := t.abs()
    	year, month, day, _ := absDate(abs, true)
    	hour, minute, second := absClock(abs)
    
    	buf := make([]byte, 0, len("time.Date(9999, time.September, 31, 23, 59, 59, 999999999, time.Local)"))
    	buf = append(buf, "time.Date("...)
    	buf = appendInt(buf, year, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            def library = sharedLibrary("${module}/build/lib/main/${variantContext.asPath}${module}")
            return variantContext.buildType.name == 'release' ? library.strippedRuntimeFile : library.file
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  5. src/net/url/url.go

    			url.RawFragment = u.RawFragment
    		}
    	}
    	if ref.Path == "" && u.Opaque != "" {
    		url.Opaque = u.Opaque
    		url.User = nil
    		url.Host = ""
    		url.Path = ""
    		return &url
    	}
    	// The "abs_path" or "rel_path" cases.
    	url.Host = u.Host
    	url.User = u.User
    	url.setPath(resolvePath(u.EscapedPath(), ref.EscapedPath()))
    	return &url
    }
    
    // Query parses RawQuery and returns the corresponding values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top