Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 767 for printsp (0.38 sec)

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

    //
    // The exact reporting behavior is as follows:
    //
    //	cmdOut  cmdErr  Result
    //	""      nil     print nothing, return nil
    //	!=""    nil     print output, return nil
    //	""      !=nil   print nothing, return cmdErr (later printed)
    //	!=""    !=nil   print nothing, ignore err, return output as error (later printed)
    //
    // reportCmd returns a non-nil error if and only if cmdErr != nil. It assumes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. src/testing/testing_test.go

    func TestMain(m *testing.M) {
    	if os.Getenv("GO_WANT_RACE_BEFORE_TESTS") == "1" {
    		doRace()
    	}
    
    	m.Run()
    
    	// Note: m.Run currently prints the final "PASS" line, so if any race is
    	// reported here (after m.Run but before the process exits), it will print
    	// "PASS", then print the stack traces for the race, then exit with nonzero
    	// status.
    	//
    	// This is a somewhat fundamental race: because the race detector hooks into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token.go

    	createCmd.Flags().BoolVar(&printJoinCommand,
    		"print-join-command", false, "Instead of printing only the token, print the full 'kubeadm join' flag needed to join the cluster using the token.")
    	createCmd.Flags().StringVar(&certificateKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. cmd/server-startup-msg.go

    	}
    
    	strippedAPIEndpoints := stripStandardPorts(apiEndpoints, globalMinioHost)
    
    	// Prints credential, region and browser access.
    	printServerCommonMsg(strippedAPIEndpoints)
    
    	// Prints `mc` cli configuration message chooses
    	// first endpoint as default.
    	printCLIAccessMsg(strippedAPIEndpoints[0], "myminio")
    
    	// Prints documentation message.
    	printObjectAPIMsg()
    }
    
    // Returns true if input is IPv6
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

        private DaemonClientFixture client
    
        def setup() {
            blockingHttpServer.start()
            if (OperatingSystem.current().windows) {
                // The killed worker on Windows will cause a broken pipe error to be printed to the console,
                // so we disable stack trace checks to avoid the test failing.
                executer.withStackTraceChecksDisabled()
            }
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. istioctl/pkg/authz/authz.go

    var configDumpFile string
    
    func checkCmd(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "check [<type>/]<name>[.<namespace>]",
    		Short: "Check AuthorizationPolicy applied in the pod.",
    		Long: `Check prints the AuthorizationPolicy applied to a pod by directly checking
    the Envoy configuration of the pod. The command is especially useful for inspecting
    the policy propagation from Istiod to Envoy and the final AuthorizationPolicy list merged
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/health.go

    // - (if static pod-hosted) that all required Static Pod manifests exist on disk
    func CheckClusterHealth(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration, ignoreChecksErrors sets.Set[string], printer output.Printer) error {
    	_, _ = printer.Println("[upgrade] Running cluster health checks")
    
    	healthChecks := []preflight.Checker{
    		&healthCheck{
    			name:   "CreateJob",
    			client: client,
    			cfg:    cfg,
    			f:      createJob,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. src/testing/testing.go

    	} else {
    		if c.chatty != nil {
    			if c.bench {
    				// Benchmarks don't print === CONT, so we should skip the test
    				// printer and just print straight to stdout.
    				fmt.Print(c.decorate(s, depth+1))
    			} else {
    				c.chatty.Printf(c.name, "%s", c.decorate(s, depth+1))
    			}
    
    			return
    		}
    		c.output = append(c.output, c.decorate(s, depth+1)...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //		symbols, methods, and fields.
    //
    // # Print Go environment information
    //
    // Usage:
    //
    //	go env [-json] [-changed] [-u] [-w] [var ...]
    //
    // Env prints Go environment information.
    //
    // By default env prints information as a shell script
    // (on Windows, a batch file). If one or more variable
    // names is given as arguments, env prints the value of
    // each named variable on its own line.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

        @TaskAction
        void printVersion() {
            println("Version: ${getVersion().get()}")
        }
    }
    ----
    =====
    ====
    
    This task does one simple thing: it prints out the version of the project to the command line.
    
    The class extends `DefaultTask` and it has one `@Input`, which is of type `Property<String>`.
    It has one method that is annotated with `@TaskAction`, which prints out the version.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
Back to top