Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 287 for Display (0.14 sec)

  1. licenses/cel.dev/expr/LICENSE

          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          copyright license to reproduce, prepare Derivative Works of,
          publicly display, publicly perform, sublicense, and distribute the
          Work and such Derivative Works in Source or Object form.
    
       3. Grant of Patent License. Subject to the terms and conditions of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. licenses/github.com/howardjohn/unshare-go/LICENSE

          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          copyright license to reproduce, prepare Derivative Works of,
          publicly display, publicly perform, sublicense, and distribute the
          Work and such Derivative Works in Source or Object form.
    
       3. Grant of Patent License. Subject to the terms and conditions of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 07:51:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            }
        }
    
        // Also covered by tests in configuration cache project
        @Requires(IntegTestPreconditions.NotConfigCached)
        def "generates build lifecycle operations for included builds with #display"() {
            given:
            dependency "org.test:${dependencyName}:1.0"
    
            buildB.settingsFile << settings << "\n"
    
            when:
            execute(buildA, ":jar")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if it as a Gradle version that supports Kotlin scripts
         */
        boolean isSupportsKotlinScript();
    
        /**
         * Returns true if this version has a method for tests display names
         */
        boolean isHasTestDisplayNames();
    
        /**
         * Returns true if this version supports custom toolchain resolvers.
         */
        boolean isSupportsCustomToolchainResolvers();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/script/cmds.go

    func Help() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "log help text for commands and conditions",
    			Args:    "[-v] name...",
    			Detail: []string{
    				"To display help for a specific condition, enclose it in brackets: 'help [amd64]'.",
    				"To display complete documentation when listing all commands, pass the -v flag.",
    			},
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    			if s.engine == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. internal/rest/client.go

    		req.Header.Set("Authorization", "**REDACTED**")
    	}
    
    	// Only display request header.
    	reqTrace, err := httputil.DumpRequestOut(req, false)
    	if err != nil {
    		return
    	}
    
    	// Write request to trace output.
    	_, err = fmt.Fprint(c.TraceOutput, string(reqTrace))
    	if err != nil {
    		return
    	}
    
    	// Only display response header.
    	var respTrace []byte
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/compute.go

    				// The kubeadm version has to be upgraded to the latest patch version
    				newKubeadmVer := patchVersionStr
    				if kubeadmVersion.AtLeast(patchVersion) {
    					// In this case, the kubeadm CLI version is new enough. Don't display an update suggestion for kubeadm by making .NewKubeadmVersion equal .CurrentKubeadmVersion
    					newKubeadmVer = kubeadmVersionStr
    				}
    
    				upgrades = append(upgrades, Upgrade{
    					Description: description,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/tool/tool.go

    		// If it's windows, don't show the .exe suffix.
    		name = strings.TrimSuffix(strings.ToLower(name), cfg.ToolExeSuffix())
    
    		// The tool directory used by gccgo will have other binaries
    		// in addition to go tools. Only display go tools here.
    		if cfg.BuildToolchainName == "gccgo" && !isGccgoTool(name) {
    			continue
    		}
    		fmt.Println(name)
    	}
    }
    
    func impersonateDistList(args []string) (handled bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

            try {
                MessageUtils.terminal.writer().print(message);
                MessageUtils.terminal.flush();
            } catch (Exception e) {
                throw new IOException("Unable to display message", e);
            }
        }
    
        private String doPrompt(String message, boolean password) throws IOException {
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	}
    	for n, help := range configHelp {
    		ui.help[n] = help
    	}
    	ui.help["details"] = "Show information about the profile and this view"
    	ui.help["graph"] = "Display profile as a directed graph"
    	ui.help["flamegraph"] = "Display profile as a flame graph"
    	ui.help["reset"] = "Show the entire profile"
    	ui.help["save_config"] = "Save current settings"
    
    	server := o.HTTPServer
    	if server == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top