Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 252 for Dword2 (0.1 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                 * base URL inheritance on the module directory names as this information is unavailable for POMs in the
                 * repository. In other words, modules where artifactId != moduleDirName will see different effective URLs
                 * depending on how the model was constructed (from filesystem or from repository).
                 */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K 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/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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    However, it’s an unnecessary extra effort for the developers to track which projects belong to what folders.
    
    2. *Use lower case hyphenation for all project names*:
    All letters are lowercase, and words are separated with a dash (`-`) character.
    
    3. *Define the root project name in the settings file*:
    The `rootProject.name` effectively assigns a name to the build, used in reports like Build Scans.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    TEXT runtime·breakpoint(SB),NOSPLIT,$0-0
    	// gdb won't skip this breakpoint instruction automatically,
    	// so you must manually "set $pc+=4" to skip it and continue.
    #ifdef GOOS_plan9
    	WORD	$0xD1200070	// undefined instruction used as armv5 breakpoint in Plan 9
    #else
    	WORD	$0xe7f001f0	// undefined instruction that gdb understands is a software breakpoint
    #endif
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top