Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for outputting (0.18 sec)

  1. cmd/kubeadm/app/apis/output/v1alpha3/doc.go

    // defined versioned output format that other software that uses
    // kubeadm for cluster deployments can use and rely on.
    //
    // Changes since v1alpha2:
    //   - Added support for outputting certificate expiration information for "kubeadm certs check-expiration"
    //     with the CertificateExpirationInfo structure.
    //   - Introduce a (breaking) change to the UpgradePlan structure used by "kubeadm upgrade plan".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

        }
    
        private TestFile configureProjectWithoutApplicationPlugin() {
            buildFile << """
                plugins {
                    id 'jvm-toolchains'
                }
    
                // Just outputting the JVM version that runs, instead of configuring a custom JavaCompile task
                task run(type: JavaExec) {
                    setJvmArgs(['-version'])
                    mainClass = 'None'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. operator/pkg/util/progress/progress.go

    				p.SetMessage(fmt.Sprintf(`%s %s installed`, successIcon, cliName), true)
    			} else {
    				p.SetMessage(fmt.Sprintf(`❌ %s encountered an error: %s`, cliName, cmpErr), true)
    			}
    			// Close the bar out, outputting a new line
    			delete(p.components, component)
    
    			// Now we create a new bar, which will have the remaining components
    			p.bar = createBar()
    			return
    		}
    		p.SetMessage(p.createStatus(p.bar.Width()), false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. common/Makefile.common.mk

    # help works by looking over all Makefile includes matching `target: ## comment` regex and outputting them
    help: ## Show this help
    	@egrep -h '^[a-zA-Z_\.-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort  | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    					continue
    				}
    				desiredImages = append(desiredImages, i)
    			}
    		}
    		plan.Images = desiredImages
    
    		a.Plan[arch] = plan
    	}
    	return a, nil
    }
    
    // VerboseCommand runs a command, outputting stderr and stdout
    func VerboseCommand(name string, arg ...string) *exec.Cmd {
    	log.Infof("Running command: %v %v", name, strings.Join(arg, " "))
    	cmd := exec.Command(name, arg...)
    	cmd.Stderr = os.Stderr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/partially_decluster_pass.cc

      for (Node* n : post_order) {
        std::optional<absl::string_view> from_cluster = GetXlaClusterForNode(*n);
        if (!from_cluster) {
          continue;
        }
    
        // Assume the benefit of not outputting a larger tensor outweighs the
        // benefit of this check.
        // TODO(tpopp): Only apply this if the value being consumed is not output
        // from the cluster to another consumer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Strings.java

       * specifiers</a>, and alert you to usage errors by throwing {@link
       * java.util.IllegalFormatException}.
       *
       * <p>In certain cases, such as outputting debugging information or constructing a message to be
       * used for another unchecked exception, an exception during string formatting would serve little
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/plan.go

    	return outputapiv1alpha3.ComponentUpgradePlan{
    		Name:           name,
    		CurrentVersion: currentVersion,
    		NewVersion:     newVersion,
    		NodeName:       nodeName,
    	}
    }
    
    // runPlan takes care of outputting available versions to upgrade to for the user
    func runPlan(flagSet *pflag.FlagSet, flags *planFlags, args []string, printer output.Printer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/env/var.go

    	// The optional default value of the environment variable.
    	DefaultValue string
    
    	// Description of the environment variable's purpose.
    	Description string
    
    	// Hide the existence of this variable when outputting usage information.
    	Hidden bool
    
    	// Mark this variable as deprecated when generating usage information.
    	Deprecated bool
    
    	// The type of the variable's value
    	Type VarType
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/image/color/ycbcr.go

    	// The inputs (y, cb, cr) are 8 bit color, ranging in [0x00, 0xff]. In this
    	// function, the output is also 8 bit color, but in the related YCbCr.RGBA
    	// method, below, the output is 16 bit color, ranging in [0x0000, 0xffff].
    	// Outputting 16 bit color simply requires changing the 16 to 8 in the "R =
    	// etc >> 16" equation, and likewise for G and B.
    	//
    	// As mentioned above, a constant rounding adjustment of 1<<15 is a natural
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top