Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 150 for switches$ (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. .github/ISSUE_TEMPLATE/00-bug.yml

            GOGCCFLAGS="-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/44/nbbyll_10jd0z8rj_qxm43740000gn/T/go-build2331607515=/tmp/go-build -gno-record-gcc-switches -fno-common"
          render: shell
        validations:
          required: true
    
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/switch_test.go

    			n += 4
    		case SI4:
    			n += 5
    		case SI5:
    			n += 6
    		case SI6:
    			n += 7
    		case SI7:
    			n += 8
    		}
    	}
    	sink = n
    }
    
    // A simple random number generator used to make switches conditionally predictable.
    type rng uint64
    
    func newRNG() rng {
    	return 1
    }
    func (r rng) next(predictable bool) rng {
    	if predictable {
    		return r + 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

        )
    
        /**
         * Modifies the start script injecting -javaagent flags. The start script file is updated in-place by appending Java agent switches to 'DEFAULT_JVM_OPTS' variable declaration.
         */
        private
        fun File.injectAgentOptions(separator: String) {
            if (agentJarNames.isEmpty()) {
                return
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. hack/pin-dependency.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script switches to the preferred version for specified module.
    # Usage: `hack/pin-dependency.sh $MODULE $SHA-OR-TAG`.
    # Example: `hack/pin-dependency.sh github.com/docker/docker 501cb131a7b7`.
    
    set -o errexit
    set -o nounset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    == Choosing a log level
    
    You can choose different log levels from the command line switches shown in <<#logLevelCommandLineOptions, Log level command-line options>>.
    
    You can also configure the log level using <<build_environment.adoc#sec:gradle_configuration_properties,`gradle.properties`>>.
    
    In <<#stacktraces,Stacktrace command-line options>> you can find the command line switches which affect stacktrace logging.
    
    [[logLevelCommandLineOptions]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_download_exec_toolchain.txt

    env TESTGO_VERSION=go1.21
    env TESTGO_VERSION_SWITCH=switch
    
    # First, test 'go mod download' outside of a module.
    #
    # There is no go.mod file into which we can record the selected toolchain,
    # so unfortunately these version switches won't be as reproducible as other
    # go commands, but that's still preferable to failing entirely or downloading
    # a module zip that we don't understand.
    
    # GOTOOLCHAIN=auto should run the newer toolchain
    env GOTOOLCHAIN=auto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top