Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for dword (0.04 sec)

  1. src/runtime/debug/mod.go

    		fmt.Fprintf(buf, "go\t%s\n", bi.GoVersion)
    	}
    	if bi.Path != "" {
    		fmt.Fprintf(buf, "path\t%s\n", bi.Path)
    	}
    	var formatMod func(string, Module)
    	formatMod = func(word string, m Module) {
    		buf.WriteString(word)
    		buf.WriteByte('\t')
    		buf.WriteString(m.Path)
    		buf.WriteByte('\t')
    		buf.WriteString(m.Version)
    		if m.Replace == nil {
    			buf.WriteByte('\t')
    			buf.WriteString(m.Sum)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 15:06:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall.go

    		return ""
    	}
    
    	// Find NUL terminator.
    	n := 0
    	for ptr := unsafe.Pointer(p); *(*byte)(ptr) != 0; n++ {
    		ptr = unsafe.Pointer(uintptr(ptr) + 1)
    	}
    
    	return string(unsafe.Slice(p, n))
    }
    
    // Single-word zero for use when we need a valid pointer to 0 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/kotlin-hl.xml

            <keyword>reified</keyword>
            <keyword>sealed</keyword>
            <keyword>suspend</keyword>
            <keyword>tailrec</keyword>
            <keyword>vararg</keyword>
            <style>word</style>
        </highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/regexp/syntax/prog.go

    		op ^= (EmptyWordBoundary | EmptyNoWordBoundary)
    	}
    	return op
    }
    
    // IsWordChar reports whether r is considered a “word character”
    // during the evaluation of the \b and \B zero-width assertions.
    // These assertions are ASCII-only: the word characters are [A-Za-z0-9_].
    func IsWordChar(r rune) bool {
    	// Test for lowercase letters first, as these occur more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/ChecksumHashFunction.java

        }
    
        @Override
        public HashCode hash() {
          long value = checksum.getValue();
          if (bits == 32) {
            /*
             * The long returned from a 32-bit Checksum will have all 0s for its second word, so the
             * cast won't lose any information and is necessary to return a HashCode of the correct
             * size.
             */
            return HashCode.fromInt((int) value);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 22:01:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "nut",
            "store",
            "finger"
        ]
    
        private final Map<String, String> mappingCache = [:].withDefault {
            def size = mappingCache.size()
            size >WORDS.size() ? "word${size}" : WORDS[size]
        }
    
        /**
         * Converts an operation dumped as JSON into code which can be used to
         * check the result, to be used in {@link NormalizingExcludeFactory}
         *
         * @param json
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. internal/s3select/sql/parser_test.go

    		&Select{},
    		participle.Lexer(sqlLexer),
    		participle.CaseInsensitive("Keyword"),
    	)
    
    	s := Select{}
    	cases := []string{
    		"select * from s3object where name > 2 or value > 1 or word > 2",
    		"select s.word.id + 2 from s3object s",
    		"select 1-2-3 from s3object s limit 1",
    	}
    	for i, tc := range cases {
    		err := p.ParseString(tc, &s)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/runtime/mfixalloc.go

    // the zero flag to false. This is only safe if the memory never
    // contains heap pointers.
    //
    // The caller is responsible for locking around FixAlloc calls.
    // Callers can keep state in the object but the first word is
    // smashed by freeing and reallocating.
    //
    // Consider marking fixalloc'd types not in heap by embedding
    // runtime/internal/sys.NotInHeap.
    type fixalloc struct {
    	size   uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/crypto/sha1/sha1block_386.s

    // the round macros instead of by explicit move instructions.
    
    // Like sha1block_amd64.s, but we keep the data and limit pointers on the stack.
    // To free up the word pointer (R10 on amd64, DI here), we add it to e during
    // LOAD/SHUFFLE instead of during MIX.
    //
    // The stack holds the intermediate word array - 16 uint32s - at 0(SP) up to 64(SP).
    // The saved a, b, c, d, e (R11 through R15 on amd64) are at 64(SP) up to 84(SP).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Protocol.kt

     *
     * ## Protocol vs Scheme
     *
     * Despite its name, [java.net.URL.getProtocol] returns the [scheme][java.net.URI.getScheme] (http,
     * https, etc.) of the URL, not the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word
     * *protocol* to identify how HTTP messages are framed.
     *
     * [ietf_alpn]: http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg
     */
    enum class Protocol(private val protocol: String) {
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top