Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 117 for flavor1 (0.14 sec)

  1. guava/src/com/google/common/escape/UnicodeEscaper.java

     * characters.
     *
     * <p>As there are important reasons, including potential security issues, to handle Unicode
     * correctly if you are considering implementing a new escaper you should favor using UnicodeEscaper
     * wherever possible.
     *
     * <p>A {@code UnicodeEscaper} instance is required to be stateless, and safe when used concurrently
     * by multiple threads.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  2. src/internal/pkgbits/decoder.go

    	//
    	// (2) short file paths that are easier for humans to read (e.g., by
    	//     omitting redundant or irrelevant details, so it's easier to
    	//     focus on the useful bits that remain).
    	//
    	// The current formatting favors the former, as it seems more
    	// helpful in practice. But perhaps the formatting could be improved
    	// to better address both concerns. For example, use relative file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            getComponent().finalizeValue();
            artifactsOverridden = false;
    
            updateModuleDescriptorArtifact();
        }
    
        // TODO: This method should be removed in favor of lazily adding artifacts to the publication state.
        // This is currently blocked by Signing eagerly realizing the publication artifacts.
        private void populateFromComponent() {
            if (populated) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    This information is used to generate documentation for each Gradle version
    on [docs.gradle.org](https://docs.gradle.org/).
    The documentation is mostly implemented in Asciidoc
    though we use GitHub-flavored Markdown for internal documentation too.
    
    You can generate docs by running `./gradlew :docs:docs`.
    This will build the whole documentation locally in [platforms/documentation](./platforms/documentation).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin_arm64.s

    	RET
    
    // mach_vm_region_trampoline calls mach_vm_region from libc.
    TEXT runtimeĀ·mach_vm_region_trampoline(SB),NOSPLIT,$0
    	MOVD	0(R0), R1	// address
    	MOVD	8(R0), R2	// size
    	MOVW	16(R0), R3	// flavor
    	MOVD	24(R0), R4	// info
    	MOVD	32(R0), R5	// count
    	MOVD	40(R0), R6  // object_name
    	MOVD	$libc_mach_task_self_(SB), R0
    	MOVW	0(R0), R0
    	BL	libc_mach_vm_region(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // function should be invoked periodically and whether it is bound by a timeout.
    // condition: user specified ConditionWithContextFunc function.
    //
    // Deprecated: will be removed in favor of loopConditionUntilContext.
    func poll(ctx context.Context, immediate bool, wait waitWithContextFunc, condition ConditionWithContextFunc) error {
    	if immediate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin_amd64.s

    	RET
    
    // mach_vm_region_trampoline calls mach_vm_region from libc.
    TEXT runtimeĀ·mach_vm_region_trampoline(SB),NOSPLIT,$0
    	MOVQ	0(DI), SI // address
    	MOVQ	8(DI), DX // size
    	MOVL	16(DI), CX // flavor
    	MOVQ	24(DI), R8 // info
    	MOVQ	32(DI), R9 // count
    	MOVQ	40(DI), R10 // object_name
    	MOVQ	$libc_mach_task_self_(SB), DI
    	MOVL	0(DI), DI
    	CALL	libc_mach_vm_region(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_test.go

    		if bytes.Contains(l, eop) {
    			return i
    		}
    	}
    	return 0
    }
    
    func gdbArgsFixup(args []string) {
    	if runtime.GOOS != "windows" {
    		return
    	}
    	// On Windows, some gdb flavors expect -ex and -iex arguments
    	// containing spaces to be double quoted.
    	var quote bool
    	for i, arg := range args {
    		if arg == "-iex" || arg == "-ex" {
    			quote = true
    		} else if quote {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"":           "IngressClassSpec provides information about the class of an Ingress.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/generated.proto

    }
    
    // IngressClassSpec provides information about the class of an Ingress.
    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top