Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 379 for Words (0.04 sec)

  1. src/cmd/go/internal/lockedfile/transform_test.go

    					return chunk, nil
    				}
    
    				words := len(data) / 8
    				if !isPowerOf2(words) {
    					t.Errorf("read %d 8-byte words, but each write is a power-of-2 number of words", words)
    					return chunk, nil
    				}
    
    				u := binary.LittleEndian.Uint64(data)
    				for i := 1; i < words; i++ {
    					next := binary.LittleEndian.Uint64(data[i*8:])
    					if next != u+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/internal/abi/funcpc_gccgo.go

    //go:build gccgo
    
    package abi
    
    import "unsafe"
    
    func FuncPCABI0(f interface{}) uintptr {
    	words := (*[2]unsafe.Pointer)(unsafe.Pointer(&f))
    	return *(*uintptr)(unsafe.Pointer(words[1]))
    }
    
    func FuncPCABIInternal(f interface{}) uintptr {
    	words := (*[2]unsafe.Pointer)(unsafe.Pointer(&f))
    	return *(*uintptr)(unsafe.Pointer(words[1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 27 21:15:37 UTC 2023
    - 530 bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

        }
    
        private String makeName(String... words) {
            int expectedLength = 0;
            for (String word : words) {
                if (word != null) {
                    expectedLength += word.length();
                }
            }
            StringBuilder builder = new StringBuilder(expectedLength);
            for (String word : words) {
                if (word == null || word.length() == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/crypto/subtle/xor_generic.go

    	dst := unsafe.Slice(dstb, n)
    	x := unsafe.Slice(xb, n)
    	y := unsafe.Slice(yb, n)
    
    	if supportsUnaligned || aligned(dstb, xb, yb) {
    		xorLoop(words(dst), words(x), words(y))
    		if uintptr(n)%wordSize == 0 {
    			return
    		}
    		done := n &^ int(wordSize-1)
    		dst = dst[done:]
    		x = x[done:]
    		y = y[done:]
    	}
    	xorLoop(dst, x, y)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 31 23:25:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/math/big/calibrate_test.go

    		}
    
    		th++
    	}
    }
    
    func measureSqr(words, nruns int, mode string) time.Duration {
    	// more runs for better statistics
    	initBasicSqr, initKaratsubaSqr := basicSqrThreshold, karatsubaSqrThreshold
    
    	switch mode {
    	case sqrModeMul:
    		basicSqrThreshold = words + 1
    	case sqrModeBasic:
    		basicSqrThreshold, karatsubaSqrThreshold = words-1, words+1
    	case sqrModeKaratsuba:
    		karatsubaSqrThreshold = words - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScopeLike.kt

         * In other words `ALL_NAMES(scope)` is a subset of `scope.getAllNames()`
         */
        public fun getAllPossibleNames(): Set<Name> = withValidityAssertion {
            getPossibleCallableNames() + getPossibleClassifierNames()
        }
    
        /**
         * Returns a **superset** of callable names which current scope may contain.
         * In other words `ALL_CALLABLE_NAMES(scope)` is a subset of `scope.getCallableNames()`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. pkg/util/iptables/testing/parse.go

    	parsed := &Rule{Raw: rule}
    
    	// Split rule into "words" (where a quoted string is a single word).
    	var words []string
    	for _, match := range wordRegex.FindAllStringSubmatch(rule, -1) {
    		words = append(words, strings.Trim(match[1], `"`))
    	}
    
    	// The chain name must come first (and can't be the only thing there)
    	if len(words) < 2 || words[0] != "-A" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. src/math/rand/v2/example_test.go

    	time.Sleep(rand.N(100 * time.Millisecond))
    }
    
    func ExampleShuffle() {
    	words := strings.Fields("ink runs from the corners of my mouth")
    	rand.Shuffle(len(words), func(i, j int) {
    		words[i], words[j] = words[j], words[i]
    	})
    	fmt.Println(words)
    }
    
    func ExampleShuffle_slicesInUnison() {
    	numbers := []byte("12345")
    	letters := []byte("ABCDE")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. src/math/rand/example_test.go

    		fmt.Println(value)
    	}
    
    	// Unordered output: 1
    	// 2
    	// 0
    }
    
    func ExampleShuffle() {
    	words := strings.Fields("ink runs from the corners of my mouth")
    	rand.Shuffle(len(words), func(i, j int) {
    		words[i], words[j] = words[j], words[i]
    	})
    	fmt.Println(words)
    }
    
    func ExampleShuffle_slicesInUnison() {
    	numbers := []byte("12345")
    	letters := []byte("ABCDE")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. .idea/dictionaries/Alexey_Sedunov.xml

    <component name="ProjectDictionaryState">
      <dictionary name="Alexey.Sedunov">
        <words>
          <w>inplace</w>
          <w>renamer</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 02 12:28:14 UTC 2016
    - 174 bytes
    - Viewed (0)
Back to top