Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 491 for small7 (0.11 sec)

  1. .github/CONTRIBUTING.md

    - Favour a working external library if appropriate.  There are many examples of OkHttp libraries that can sit on top or hook in via existing APIs.
    - Get working code on a personal branch with tests before you submit a PR.
    - OkHttp is a small and light dependency.  Don't introduce new dependencies or major new functionality.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 17 04:16:26 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

        // This may have performance implications, however the assumption is that class generators are global scoped objects that are created once and in very small numbers
        private static final Map<String, Throwable> SUFFIXES = new ConcurrentHashMap<>();
    
        /**
         * Registers the given suffix as in use for generated class names.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/vet/README

    Precision:
    
    Most of vet's checks are heuristic and can generate both false positives (flagging
    correct programs) and false negatives (not flagging incorrect ones). The rate of
    both these failures must be very small. A check that is too noisy will be ignored
    by the programmer overwhelmed by the output; a check that misses too many of the
    cases it's looking for will give a false sense of security. Neither is acceptable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  4. src/math/hypot_386.s

    	FUCOMI  F0, F1       // compare F0 to F1
    	JCC     2(PC)        // jump if F0 >= F1
    	FXCHD   F0, F1       // F0=|p| (larger), F1=|q| (smaller)
    	FTST                 // compare F0 to 0
    	FSTSW	AX
    	ANDW    $0x4000, AX
    	JNE     10(PC)       // jump if F0 = 0
    	FXCHD   F0, F1       // F0=q (smaller), F1=p (larger)
    	FDIVD   F1, F0       // F0=q(=q/p), F1=p
    	FMULD   F0, F0       // F0=q*q, F1=p
    	FLD1                 // F0=1, F1=q*q, F2=p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. src/unique/handle.go

    func addUniqueMap[T comparable](typ *abi.Type) *uniqueMap[T] {
    	// Create a map for T and try to register it. We could
    	// race with someone else, but that's fine; it's one
    	// small, stray allocation. The number of allocations
    	// this can create is bounded by a small constant.
    	m := &uniqueMap[T]{
    		HashTrieMap: concurrent.NewHashTrieMap[T, weak.Pointer[T]](),
    		cloneSeq:    makeCloneSeq(typ),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/internal/bytealg/count_amd64.s

    TEXT countbody<>(SB),NOSPLIT,$0
    	// Shuffle X0 around so that each byte contains
    	// the character we're looking for.
    	MOVD AX, X0
    	PUNPCKLBW X0, X0
    	PUNPCKLBW X0, X0
    	PSHUFL $0, X0, X0
    
    	CMPQ BX, $16
    	JLT small
    
    	MOVQ $0, R12 // Accumulator
    
    	MOVQ SI, DI
    
    	CMPQ BX, $64
    	JAE avx2
    sse:
    	LEAQ	-16(SI)(BX*1), AX	// AX = address of last 16 bytes
    	JMP	sseloopentry
    
    	PCALIGN $16
    sseloop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_cache.txt

    # corpus, and the total size of the cache is now 1.
    go clean -fuzzcache
    go test -fuzz=FuzzEmpty -fuzztime=10000x .
    stdout 'new interesting: 1'
    stdout 'total: 1'
    
    # Fuzzing again with a small fuzztime does not find any other interesting
    # values but still indicates that the cache size is 1.
    go test -fuzz=FuzzEmpty -fuzztime=2x .
    stdout 'new interesting: 0'
    stdout 'total: 1'
    
    ! go clean -fuzzcache example.com/y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/crypto/rsa/example_test.go

    		fmt.Fprintf(os.Stderr, "Error decrypting: %s\n", err)
    		return
    	}
    
    	fmt.Printf("Plaintext: %s\n", plaintext)
    }
    
    func ExampleSignPKCS1v15() {
    	message := []byte("message to be signed")
    
    	// Only small messages can be signed directly; thus the hash of a
    	// message, rather than the message itself, is signed. This requires
    	// that the hash function be collision resistant. SHA-256 is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_illumos.go

    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept4(fd, &rsa, &len, flags)
    	if err != nil {
    		return
    	}
    	if len > SizeofSockaddrAny {
    		panic("RawSockaddrAny too small")
    	}
    	sa, err = anyToSockaddr(fd, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/compress/testdata/gettysburg.txt

    dead we take increased devotion to that cause for which they
    gave the last full measure of devotion -
      that we here highly resolve that these dead shall not have
    died in vain - that this nation, under God, shall have a new
    birth of freedom - and that government of the people, by the
    people, for the people, shall not perish from this earth.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
Back to top