Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 2,326 for light (0.04 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
         * For example, the value might have been restored from the configuration cache.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, T value);
    
        /**
         * Creates a cache backed by calculated values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/internal/abi/compiletype.go

    // Their contents must be kept in sync with their definitions.
    // Because the host and target type sizes can differ, the compiler and
    // linker cannot use the host information that they might get from
    // either unsafe.Sizeof and Alignof, nor runtime, reflect, or reflectlite.
    
    // CommonSize returns sizeof(Type) for a compilation target with a given ptrSize
    func CommonSize(ptrSize int) int { return 4*ptrSize + 8 + 8 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 03:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. test/prove.go

    func modu2(x, y uint) int {
    	z := x % y
    	if z <= x { // ERROR "Proved Leq64U$"
    		return 1
    	}
    	return 0
    }
    
    func issue57077(s []int) (left, right []int) {
    	middle := len(s) / 2
    	left = s[:middle] // ERROR "Proved IsSliceInBounds$"
    	right = s[middle:] // ERROR "Proved IsSliceInBounds$"
    	return
    }
    
    func issue51622(b []byte) int {
    	if len(b) >= 3 && b[len(b)-3] == '#' { // ERROR "Proved IsInBounds$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolutionResult.java

         *
         * @param sourceDescription a description of the source of plugins, where the plugin requested could not be found
         * @param notFoundMessage message on why the plugin couldn't be found (e.g. it might be available by a different version)
         */
        public static PluginResolutionResult notFound(String sourceDescription, String notFoundMessage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/route.go

    // system.
    //
    // The provided af must be an address family.
    //
    // The provided arg must be a RIBType-specific argument.
    // When RIBType is related to routes, arg might be a set of route
    // flags. When RIBType is related to network interfaces, arg might be
    // an interface index or a set of interface flags. In most cases, zero
    // means a wildcard.
    func FetchRIB(af int, typ RIBType, arg int) ([]byte, error) {
    	try := 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/errors/wrap.go

    //
    // An error is considered to match a target if it is equal to that target or if
    // it implements a method Is(error) bool such that Is(target) returns true.
    //
    // An error type might provide an Is method so it can be treated as equivalent
    // to an existing error. For example, if MyError defines
    //
    //	func (m MyError) Is(target error) bool { return target == fs.ErrExist }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            buffer.consumeWhitespace();
            while (buffer.consume("##")) {
                buffer.consumeWhitespace();
                right = buffer.readIdentifier();
                if (right == null) {
                    // Need another identifier
                    buffer.pos = pos;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
    	var plaintext []byte
    	typ := recordType(record[0])
    	payload := record[recordHeaderLen:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_libinit.c

    // And pthread_key_destructor will dropm when the thread is exiting.
    void x_cgo_bindm(void* g) {
    	// We assume this will always succeed, otherwise, there might be extra M leaking,
    	// when a C thread exits after a cgo call.
    	// We only invoke this function once per thread in runtime.needAndBindM,
    	// and the next calls just reuse the bound m.
    	pthread_setspecific(pthread_g, g);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Shorts.java

        INSTANCE;
    
        @Override
        public int compare(short[] left, short[] right) {
          int minLength = Math.min(left.length, right.length);
          for (int i = 0; i < minLength; i++) {
            int result = Shorts.compare(left[i], right[i]);
            if (result != 0) {
              return result;
            }
          }
          return left.length - right.length;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
Back to top