Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 339 for Words (0.04 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. src/runtime/metrics/description.go

    		Kind:       KindFloat64,
    		Cumulative: true,
    	},
    	{
    		Name: "/cpu/classes/idle:cpu-seconds",
    		Description: "Estimated total available CPU time not spent executing any Go or Go runtime code. " +
    			"In other words, the part of /cpu/classes/total:cpu-seconds that was unused. " +
    			"This metric is an overestimate, and not directly comparable to " +
    			"system CPU time measurements. Compare only with other /cpu/classes " +
    			"metrics.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. 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)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/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: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/syscall/syscall_freebsd.go

    	// as the size. I don't know why the +2 is here, but the
    	// kernel uses +2 for its own implementation of this function.
    	// I am scared that if we don't include the +2 here, the kernel
    	// will silently write 2 words farther than we specify
    	// and we'll get memory corruption.
    	var buf [CTL_MAXNAME + 2]_C_int
    	n := uintptr(CTL_MAXNAME) * siz
    
    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. src/runtime/stkframe.go

    				throw("bad symbol table")
    			}
    			locals = stackmapdata(stkmap, stackid)
    			if stackDebug >= 3 && debug {
    				print("      locals ", stackid, "/", stkmap.n, " ", locals.n, " words ", locals.bytedata, "\n")
    			}
    		} else if stackDebug >= 3 && debug {
    			print("      no locals to adjust\n")
    		}
    	}
    
    	// Arguments. First fetch frame size and special-case argument maps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/net/interface_test.go

    	// Note: BSD variants allow assigning any IPv4/IPv6 address
    	// prefix to IP interface. For example,
    	//   - 0.0.0.0/0 through 255.255.255.255/32
    	//   - ::/0 through ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff/128
    	// In other words, there is no tightly-coupled combination of
    	// interface address prefixes and connected routes.
    	stats := new(routeStats)
    	for _, ifa := range ifat {
    		switch ifa := ifa.(type) {
    		case *IPNet:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/math/big/int.go

    	h := nlz(A.abs[n-1])
    	a1 = A.abs[n-1]<<h | A.abs[n-2]>>(_W-h)
    	// B may have implicit zero words in the high bits if the lengths differ
    	switch {
    	case n == m:
    		a2 = B.abs[n-1]<<h | B.abs[n-2]>>(_W-h)
    	case n == m+1:
    		a2 = B.abs[n-2] >> (_W - h)
    	default:
    		a2 = 0
    	}
    
    	// Since we are calculating with full words to avoid overflow,
    	// we use 'even' to track the sign of the cosequences.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top