Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for switches$ (0.32 sec)

  1. src/runtime/msan_loong64.s

    	MOVV	dst+0(FP), RARG0
    	MOVV	src+8(FP), RARG1
    	MOVV	sz+16(FP), RARG2
    	// void __msan_memmove(void *dst, void *src, uintptr_t sz);
    	MOVV	$__msan_memmove(SB), FARG
    	JMP	msancall<>(SB)
    
    // Switches SP to g0 stack and calls (FARG). Arguments already set.
    TEXT	msancall<>(SB), NOSPLIT, $0-0
    	MOVV	R3, R23         // callee-saved
    	BEQ	g, g0stack      // no g, still on a system stack
    	MOVV	g_m(g), R14
    	MOVV	m_g0(R14), R15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/runtime/asan_loong64.s

    	MOVV	addr+0(FP), RARG0
    	MOVV	n+8(FP), RARG1
    	// void __asan_register_globals_go(void *addr, uintptr_t n);
    	MOVV	$__asan_register_globals_go(SB), FARG
    	JMP	asancall<>(SB)
    
    // Switches SP to g0 stack and calls (FARG). Arguments already set.
    TEXT	asancall<>(SB), NOSPLIT, $0-0
    	MOVV	R3, R23         // callee-saved
    	BEQ	g, g0stack      // no g, still on a system stack
    	MOVV	g_m(g), R14
    	MOVV	m_g0(R14), R15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/FileBackedOutputStream.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.annotation.CheckForNull;
    
    /**
     * An {@link OutputStream} that starts buffering to a byte array, but switches to file buffering
     * once the data reaches a configurable size.
     *
     * <p>When this stream creates a temporary file, it restricts the file's permissions to the current
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/runtime/msan_amd64.s

    	MOVQ	dst+0(FP), RARG0
    	MOVQ	src+8(FP), RARG1
    	MOVQ	sz+16(FP), RARG2
    	// void __msan_memmove(void *dst, void *src, uintptr_t sz);
    	MOVQ	$__msan_memmove(SB), AX
    	JMP	msancall<>(SB)
    
    // Switches SP to g0 stack and calls (AX). Arguments already set.
    TEXT	msancall<>(SB), NOSPLIT, $0-0
    	get_tls(R12)
    	MOVQ	g(R12), R14
    	MOVQ	SP, R12		// callee-saved, preserved across the CALL
    	CMPQ	R14, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/FileBackedOutputStream.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.annotation.CheckForNull;
    
    /**
     * An {@link OutputStream} that starts buffering to a byte array, but switches to file buffering
     * once the data reaches a configurable size.
     *
     * <p>When this stream creates a temporary file, it restricts the file's permissions to the current
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/runtime/asan_amd64.s

    	MOVQ	addr+0(FP), RARG0
    	MOVQ	n+8(FP), RARG1
    	// void __asan_register_globals_go(void *addr, uintptr_t n);
    	MOVQ	$__asan_register_globals_go(SB), AX
    	JMP	asancall<>(SB)
    
    // Switches SP to g0 stack and calls (AX). Arguments already set.
    TEXT	asancall<>(SB), NOSPLIT, $0-0
    	get_tls(R12)
    	MOVQ	g(R12), R14
    	MOVQ	SP, R12		// callee-saved, preserved across the CALL
    	CMPQ	R14, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/runtime/asan_ppc64le.s

    	MOVD	addr+0(FP), RARG0
    	MOVD	n+8(FP), RARG1
    	// void __asan_register_globals_go(void *addr, uintptr_t n);
    	MOVD	$__asan_register_globals_go(SB), FARG
    	BR	asancall<>(SB)
    
    // Switches SP to g0 stack and calls (FARG). Arguments already set.
    TEXT	asancall<>(SB), NOSPLIT, $0-0
    	// LR saved in generated prologue
    	// Get info from the current goroutine
    	MOVD	runtimeĀ·tls_g(SB), R10  // g offset in TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 18:13:33 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/CommandLineIntegrationLoggingSpec.groovy

            'info'      | 'debug'     | ['-Dorg.gradle.logging.level=info']
            'debug'     | ''          | ['-Dorg.gradle.logging.level=debug']
        }
    
    
        def "Command line switches override properly: #flags #options"() {
            setup:
            executer.requireIsolatedDaemons()
    
            def message = 'Expected message in the output'
            buildFile << """
                task assertLogging {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

         *
         * @param csq The character sequence
         * @return this.
         */
        @Override
        StyledTextOutput append(CharSequence csq, int start, int end);
    
        /**
         * Switches to a new style. The default style is {@link Style#Normal}.
         *
         * @param style The style.
         * @return this
         */
        StyledTextOutput style(Style style);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/services.go

    func (d Services) Less(i, j int) bool {
    	return strings.Compare(d[i].Config().ClusterLocalFQDN(), d[j].Config().ClusterLocalFQDN()) < 0
    }
    
    // Swap switches the positions of elements at i and j (used for sorting).
    func (d Services) Swap(i, j int) {
    	d[i], d[j] = d[j], d[i]
    }
    
    // Copy this services array.
    func (d Services) Copy() Services {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top