Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 70 for Display (0.13 sec)

  1. docs/debugging/xl-meta/main.go

    	app.HideHelpCommand = true
    	app.Flags = []cli.Flag{
    		cli.BoolFlag{
    			Usage:  "print each file as a separate line without formatting",
    			Name:   "ndjson",
    			Hidden: true,
    		},
    		cli.BoolFlag{
    			Usage: "display inline data keys and sizes",
    			Name:  "data",
    		},
    		cli.BoolFlag{
    			Usage: "export inline data",
    			Name:  "export",
    		},
    		cli.BoolFlag{
    			Usage: "combine inline data",
    			Name:  "combine",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    		return sa, nil
    
    	case AF_UNIX:
    		pp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))
    		sa := new(SockaddrUnix)
    		if pp.Path[0] == 0 {
    			// "Abstract" Unix domain socket.
    			// Rewrite leading NUL as @ for textual display.
    			// (This is the standard convention.)
    			// Not friendly to overwrite in place,
    			// but the callers below don't care.
    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	if a.cumDiv != 0 {
    		return a.cum / a.cumDiv
    	}
    	return a.cum
    }
    
    // annotateAssembly annotates a set of assembly instructions with a
    // set of samples. It returns a set of nodes to display. base is an
    // offset to adjust the sample addresses.
    func annotateAssembly(insts []plugin.Inst, samples graph.Nodes, file plugin.ObjFile) []assemblyInstruction {
    	// Add end marker to simplify printing loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. src/os/os_windows_test.go

    	mar, err := windows.OpenSCManager(nil, nil, windows.SERVICE_QUERY_STATUS)
    	if err != nil {
    		return
    	}
    	defer syscall.CloseHandle(mar)
    	//LanmanWorkstation is the service name, and Workstation is the display name.
    	srv, err := windows.OpenService(mar, syscall.StringToUTF16Ptr("LanmanWorkstation"), windows.SERVICE_QUERY_STATUS)
    	if err != nil {
    		return
    	}
    	defer syscall.CloseHandle(srv)
    	var state windows.SERVICE_STATUS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    		if pos := strings.Index(fn, "."); pos >= 0 {
    			fn = fn[pos+1:]
    		}
    		s += fmt.Sprintf("call to %s:", fn)
    	} else {
    		s += "indirect call:"
    	}
    
    	// Sort variable names for display. Variables aren't in any particular order, and
    	// the order can change by architecture, particularly with differences in regabi.
    	var names []string
    	for j, n := range lv.vars {
    		if live.Get(int32(j)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Info;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    /**
     * <p>Displays a list of projects in the build. An instance of this type is used when you execute the {@code projects}
     * task from the command-line.</p>
     */
    @DisableCachingByDefault(because = "Not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            when:
            fails('init', '--type', 'basic', '--package', 'thing')
    
            then:
            failure.assertHasCause("Package name is not supported for 'basic' build type.")
        }
    
        def "displays all build types and modifiers in help command output"() {
            when:
            targetDir.file("settings.gradle").touch()
            run('help', '--task', 'init')
    
            then:
            outputContains("""Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ====
    include::sample[dir="snippets/providers/propertyAndProvider/kotlin",files="build.gradle.kts[]"]
    include::sample[dir="snippets/providers/propertyAndProvider/groovy",files="build.gradle[]"]
    ====
    <1> A task that displays a greeting
    <2> A configurable greeting
    <3> Read-only property calculated from the greeting
    <4> Configure the greeting
    <5> Alternative notation to calling Property.set()
    
    ----
    $ gradle greeting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    	}
    
    	if enableProfiling {
    		runtime.SetMutexProfileFraction(features.MutexProfileFraction)
    		runtime.SetBlockProfileRate(features.MutexProfileFraction)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/", "Displays pprof index", pprof.Index)
    		s.addDebugHandler(mux, internalMux, "/debug/pprof/cmdline", "The command line invocation of the current program", pprof.Cmdline)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks.go

    			imagePullPolicy: cfg.NodeRegistration.ImagePullPolicy,
    			imagePullSerial: serialPull,
    		},
    	}
    	return RunChecks(checks, os.Stderr, ignorePreflightErrors)
    }
    
    // RunChecks runs each check, displays its warnings/errors, and once all
    // are processed will exit if any errors occurred.
    func RunChecks(checks []Checker, ww io.Writer, ignorePreflightErrors sets.Set[string]) error {
    	var errsBuffer bytes.Buffer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top