Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for Dword2 (0.12 sec)

  1. src/hash/crc64/crc64.go

    const (
    	// The ISO polynomial, defined in ISO 3309 and used in HDLC.
    	ISO = 0xD800000000000000
    
    	// The ECMA polynomial, defined in ECMA 182.
    	ECMA = 0xC96C5795D7870F42
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    type Table [256]uint64
    
    var (
    	slicing8TablesBuildOnce sync.Once
    	slicing8TableISO        *[8]Table
    	slicing8TableECMA       *[8]Table
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                ImmutableCapabilities capabilities = variant.getCapabilities();
                MatchResult result;
                if (explicitlyRequested) {
                    // some capabilities are explicitly required (in other words, we're not _necessarily_ looking for the default capability
                    // so we need to filter the variants
                    result = providesAllCapabilities(targetComponent, explicitRequestedCapabilities, capabilities);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
        # Setting locale to US will correct the British spelling of 'colour' to 'color'.
        locale: US
        ignore-words:
          - cancelled
      lll:
        # max line length, lines longer will be reported. Default is 120.
        # '\t' is counted as 1 character by default, and can be changed with the tab-width option
        line-length: 160
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    	// addr is the address the iterator is currently working from and describes
    	// the address of the first word referenced by mask.
    	addr uintptr
    
    	// mask is a bitmask where each bit corresponds to pointer-words after addr.
    	// Bit 0 is the pointer-word at addr, Bit 1 is the next word, and so on.
    	// If a bit is 1, then there is a pointer at that word.
    	// nextFast and next mask out bits in this mask as their pointers are processed.
    	mask uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. src/runtime/stack.go

    )
    
    const (
    	// stackDebug == 0: no logging
    	//            == 1: logging of per-stack operations
    	//            == 2: logging of per-frame operations
    	//            == 3: logging of per-word updates
    	//            == 4: logging of per-word reads
    	stackDebug       = 0
    	stackFromSystem  = 0 // allocate stacks from system memory instead of the heap
    	stackFaultOnFree = 0 // old stacks are mapped noaccess to detect use after free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/reflect/type.go

    		if etyp.Pointers() {
    			emitGCMask(mask, base, etyp, abi.MapBucketCount)
    		}
    		base += abi.MapBucketCount * etyp.Size_ / goarch.PtrSize
    
    		word := base
    		mask[word/8] |= 1 << (word % 8)
    		gcdata = &mask[0]
    		ptrdata = (word + 1) * goarch.PtrSize
    
    		// overflow word must be last
    		if ptrdata != size {
    			panic("reflect: bad layout computation in MapOf")
    		}
    	}
    
    	b := &abi.Type{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 10 */
        String SUGGEST_POPULAR_WORD_SIZE = "suggest.popular.word.size";
    
        /** The key of the configuration. e.g. 30 */
        String SUGGEST_POPULAR_WORD_WINDOW_SIZE = "suggest.popular.word.window.size";
    
        /** The key of the configuration. e.g. 10 */
        String SUGGEST_POPULAR_WORD_QUERY_FREQ = "suggest.popular.word.query.freq";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  8. src/encoding/csv/reader.go

    //
    //	{`normal string`, `quoted-field`}
    //
    // Within a quoted-field a quote character followed by a second quote
    // character is considered a single quote.
    //
    //	"the ""word"" is true","a ""quoted-field"""
    //
    // results in
    //
    //	{`the "word" is true`, `a "quoted-field"`}
    //
    // Newlines and commas may be included in a quoted-field
    //
    //	"Multi-line
    //	field","comma is ,"
    //
    // results in
    //
    //	{`Multi-line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/os/path_windows_test.go

    	// (256) and thus requires fixLongPath to be correctly interpreted in I/O syscalls.
    	veryLong := "l" + strings.Repeat("o", 500) + "ng"
    	for _, test := range []struct{ in, want string }{
    		// Test cases use word substitutions:
    		//   * "long" is replaced with a very long pathname
    		//   * "c:" or "C:" are replaced with the drive of the current directory (preserving case)
    		//   * "cwd" is replaced with the current directory
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    	}
    	s.at(firstWord)
    	s.notAFunction(cmd.Args, final)
    	switch word := firstWord.(type) {
    	case *parse.BoolNode:
    		return reflect.ValueOf(word.True)
    	case *parse.DotNode:
    		return dot
    	case *parse.NilNode:
    		s.errorf("nil is not a command")
    	case *parse.NumberNode:
    		return s.idealConstant(word)
    	case *parse.StringNode:
    		return reflect.ValueOf(word.Text)
    	}
    	s.errorf("can't evaluate command %q", firstWord)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top