Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 785 for printhex (0.18 sec)

  1. cmd/kubeadm/app/cmd/certs.go

    		return nil
    	}
    	fmt.Printf("%s renewed\n", handler.LongName)
    	return nil
    }
    
    func getInternalCfg(cfgPath string, client kubernetes.Interface, cfg kubeadmapiv1.ClusterConfiguration, printer output.Printer, logPrefix string) (*kubeadmapi.InitConfiguration, error) {
    	// In case the user is not providing a custom config, try to get current config from the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

    #ifdef __cplusplus
    extern "C" {
    #endif
    
    /** Run modes for the basic interface. */
    typedef enum {
      CU_BRM_NORMAL = 0,  /**< Normal mode - failures and run summary are printed [default]. */
      CU_BRM_SILENT,      /**< Silent mode - no output is printed except framework error messages. */
      CU_BRM_VERBOSE      /**< Verbose mode - maximum output of run details. */
    } CU_BasicRunMode;
    
    CU_EXPORT CU_ErrorCode CU_basic_run_tests(void);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/WarningMode.java

        WarningMode(boolean displayMessages) {
            this.displayMessages = displayMessages;
        }
    
        /**
         * Indicates whether deprecation messages are to be printed in-line
         *
         * @return {@code true} if messages are to be printed, {@code false} otherwise
         *
         * @since 5.6
         */
        public boolean shouldDisplayMessages() {
            return displayMessages;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/fmtcmd/fmt.go

    	printed := false
    	gofmt := gofmtPath()
    
    	gofmtArgs := []string{gofmt, "-l", "-w"}
    	gofmtArgLen := len(gofmt) + len(" -l -w")
    
    	baseGofmtArgs := len(gofmtArgs)
    	baseGofmtArgLen := gofmtArgLen
    
    	for _, pkg := range load.PackagesAndErrors(ctx, load.PackageOpts{}, args) {
    		if modload.Enabled() && pkg.Module != nil && !pkg.Module.Main {
    			if !printed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

      TextFormat::Printer printer;
      printer.SetSingleLineMode(true);
    
      std::string method_txtpb;
      if (!printer.PrintToString(method, &method_txtpb)) {
        LLVM_DEBUG(llvm::dbgs() << "Failed to convert Method to textproto\n.");
        return failure();
      }
    
      // Single line mode might have an extra space at the end, due to the internal
      // details of `Printer`.
      TrimTrailingWhitespaces(method_txtpb);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fail_newline.txt

    [short] skip
    
    # In package list mode, output is buffered.
    # Check that a newline is printed after the buffer's contents.
    cd fail
    ! go test .
    ! stderr .
    stdout '^exitcode=1\n'
    stdout '^FAIL\s+example/fail'
    
    # In local directory mode output is streamed, so we don't know
    # whether the test printed anything at all, so we print the exit code
    # (just in case it failed without emitting any output at all),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 21:33:23 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

            System.setOut(new ThreadBoundPrintStream(this.originalSystemOUtStream));
            printer = new ConsolePrinter(segmentChunks);
            new Thread(printer).start();
            printer.waitUntilRunning(true);
        }
    
        public void close() {
            printer.waitUntilRunning(false);
            System.setOut(this.originalSystemOUtStream);
        }
    
        private void setNext() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/print_flags_test.go

    				},
    			},
    			"pod/bar\n"},
    	}
    
    	printFlags := NewPrintFlags("").WithTypeSetter(scheme.Scheme).WithDefaultOutput("name")
    	printer, err := printFlags.ToPrinter()
    	if err != nil {
    		t.Fatalf("unexpected err: %v", err)
    	}
    
    	for name, item := range tests {
    		buff := &bytes.Buffer{}
    		err := printer.PrintObj(item.obj, buff)
    		if err != nil {
    			t.Errorf("%v: unexpected err: %v", name, err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 31 23:04:01 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/token.go

    			client, err := cmdutil.GetClientSet(kubeConfigFile, dryRun)
    			if err != nil {
    				return err
    			}
    
    			printer, err := outputFlags.ToPrinter()
    			if err != nil {
    				return errors.Wrap(err, "could not construct output printer")
    			}
    
    			return RunListTokens(out, errW, client, printer)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	outputFlags.AddFlags(listCmd)
    
    	tokenCmd.AddCommand(listCmd)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumer.java

            try (Scanner scanner = new Scanner(processStdOutput)) {
                PrintWriter printer = new PrintWriter(output);
                while (scanner.hasNext()) {
                    String line = scanner.nextLine();
                    LOGGER.debug("daemon out: {}", line);
                    printer.println(line);
                    if (startupCommunication.containsGreeting(line)) {
                        break;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top