Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 353 for little32 (0.14 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/kotlin/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/kotlin/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/HashCode.java

       * {@code int} value in little-endian order.
       *
       * @throws IllegalStateException if {@code bits() < 32}
       */
      public abstract int asInt();
    
      /**
       * Returns the first eight bytes of {@linkplain #asBytes() this hashcode's bytes}, converted to a
       * {@code long} value in little-endian order.
       *
       * @throws IllegalStateException if {@code bits() < 64}
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  4. src/runtime/write_err_android.go

    	//      hdr[3:7] sec unsigned uint32, little endian.
    	//      hdr[7:11] nsec unsigned uint32, little endian.
    	hdr[0] = 0 // LOG_ID_MAIN
    	sec, nsec, _ := time_now()
    	packUint32(hdr[3:7], uint32(sec))
    	packUint32(hdr[7:11], uint32(nsec))
    
    	// TODO(hakim):  hdr[1:2] = gettid?
    
    	return 11 + len(writeHeader)
    }
    
    func packUint32(b []byte, v uint32) {
    	// little-endian.
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/HashCode.java

       * {@code int} value in little-endian order.
       *
       * @throws IllegalStateException if {@code bits() < 32}
       */
      public abstract int asInt();
    
      /**
       * Returns the first eight bytes of {@linkplain #asBytes() this hashcode's bytes}, converted to a
       * {@code long} value in little-endian order.
       *
       * @throws IllegalStateException if {@code bits() < 64}
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/groovy/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/groovy/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  8. src/time/tzdata/tzdata.go

    func init() {
    	registerLoadFromEmbeddedTZData(loadFromEmbeddedTZData)
    }
    
    // get4s returns the little-endian 32-bit value at the start of s.
    func get4s(s string) int {
    	if len(s) < 4 {
    		return 0
    	}
    	return int(s[0]) | int(s[1])<<8 | int(s[2])<<16 | int(s[3])<<24
    }
    
    // get2s returns the little-endian 16-bit value at the start of s.
    func get2s(s string) int {
    	if len(s) < 2 {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_arm.go

    	word := uint32(v) << ((uaddr & 3) * 8) // little endian
    	for {
    		old := *addr32
    		if Cas(addr32, old, old|word) {
    			return
    		}
    	}
    }
    
    //go:nosplit
    func And8(addr *uint8, v uint8) {
    	// Align down to 4 bytes and use 32-bit CAS.
    	uaddr := uintptr(unsafe.Pointer(addr))
    	addr32 := (*uint32)(unsafe.Pointer(uaddr &^ 3))
    	word := uint32(v) << ((uaddr & 3) * 8)    // little endian
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. releasenotes/notes/new_lb_algorithm_default.yaml

        likely to overburden endpoints. A number of experiments (by both the Istio and
        Envoy teams) have shown that `LEAST_REQUEST` outperforms `ROUND_ROBIN` in virtually all
        cases, with little/no downsides. It's generally considered a drop-in replacement for
        ROUND_ROBIN.
        
        `ROUND_ROBIN` will continue to be supported if explicitly specified. To restore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 09 20:55:01 UTC 2022
    - 856 bytes
    - Viewed (0)
Back to top