Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for cmdLines (0.12 sec)

  1. src/cmd/go/internal/work/cover.go

    // as part of the execution of action 'a'.
    func (b *Builder) CovData(a *Action, cmdargs ...any) ([]byte, error) {
    	cmdline := str.StringList(cmdargs...)
    	args := append([]string{}, cfg.BuildToolexec...)
    	args = append(args, base.Tool("covdata"))
    	args = append(args, cmdline...)
    	return b.Shell(a).runOut(a.Objdir, nil, args)
    }
    
    // BuildActionCoverMetaFile locates and returns the path of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. pkg/ctrlz/ctrlz.go

    	router := mux.NewRouter()
    	for _, t := range allTopics {
    		registerTopic(router, mainLayout, t)
    	}
    
    	if o.EnablePprof && o.Address == "localhost" {
    		router.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
    		router.HandleFunc("/debug/pprof/profile", pprof.Profile)
    		router.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
    		router.HandleFunc("/debug/pprof/trace", pprof.Trace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/util/LongCommandLineDetectionUtil.java

            } else if (OperatingSystem.current().isWindows()) {
                defaultMax = MAX_COMMAND_LINE_LENGTH_WINDOWS;
            }
            // in chars
            return Integer.getInteger("org.gradle.internal.cmdline.max.length", defaultMax);
        }
    
        public static boolean hasCommandLineExceedMaxLengthException(Throwable failureCause) {
            Throwable cause = failureCause;
            do {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 03 12:35:59 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/EvaluateSettingsBuildOperationIntegrationTest.groovy

            when:
            succeeds('help')
    
            then:
            verifySettings(operation(), settingsFile)
            operation().details.buildPath == ":"
        }
    
        def "settings set via cmdline flag are exposed"() {
            createDirs("custom", "custom/a")
            def customSettingsDir = file("custom")
            def customSettingsFile = new File(customSettingsDir, "settings.gradle")
            customSettingsFile << """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/syscall/mksyscall_libc.pl

    #	* at the end, after "=" sign, like
    #	  //sys getsockopt(s int, level int, name int, val uintptr, vallen *_Socklen) (err error) = libsocket.getsockopt
    
    use strict;
    
    my $cmdline = "mksyscall_libc.pl " . join(' ', @ARGV);
    my $errors = 0;
    my $_32bit = "";
    my $tags = "";  # build tags
    my $newtags = ""; # new style build tags
    my $aix = 0;
    my $solaris = 0;
    
    binmode STDOUT;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof_test.go

    		{"/debug/pprof/heap", Index, http.StatusOK, "application/octet-stream", `attachment; filename="heap"`, nil},
    		{"/debug/pprof/heap?debug=1", Index, http.StatusOK, "text/plain; charset=utf-8", "", nil},
    		{"/debug/pprof/cmdline", Cmdline, http.StatusOK, "text/plain; charset=utf-8", "", nil},
    		{"/debug/pprof/profile?seconds=1", Profile, http.StatusOK, "application/octet-stream", `attachment; filename="profile"`, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            """
    
            // Artificially lower the length of the command-line we try to shorten
            file("gradle.properties") << """
                systemProp.org.gradle.internal.cmdline.max.length=1000
            """
    
            when:
            succeeds taskName, "-i"
    
            then:
            executedAndNotSkipped(":$taskName")
            assertOutputContainsShorteningMessage()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/LoadBuildStructureBuildOperationIntegrationTest.groovy

            verifyProject(project(':a:c:d', eventRootProject), 'd', ':a:c:d', [], testDirectory.file('d'), 'd.gradle')
        }
    
        def "settings set via cmdline flag are exposed correctly"() {
            createDirs("custom", "custom/a")
            def customSettingsDir = file("custom")
            def customSettingsFile = new File(customSettingsDir, "settings.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. cni/pkg/repair/netns.go

    	// We want the pause container, as the istio-validation one may exit before we are done.
    	// We do this by detecting the longest running process. We could look at `cmdline`, but is likely more reliable to weird platforms.
    	for _, p := range procs {
    		match := false
    		ns := getPidNamespace(p.PID)
    
    		err := netns.WithNetNSPath(ns, func(_ netns.NetNS) error {
    			var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top