Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,139 for Commands (0.12 sec)

  1. ci/official/utilities/setup.sh

    # lean and easy to follow. When in doubt, remember that for CI scripts, "keep it
    # simple" is MUCH more important than "don't repeat yourself."
    
    # -e: abort script if one command fails
    # -u: error if undefined variable used
    # -x: log all commands
    # -o pipefail: entire command fails if pipe fails. watch out for yes | ...
    # -o history: record shell history
    # -o allexport: export all functions and variables to be available to subscripts
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/feature/feature_gate.go

    limitations under the License.
    */
    
    package feature
    
    import (
    	"k8s.io/component-base/featuregate"
    )
    
    var (
    	// DefaultMutableFeatureGate is a mutable version of DefaultFeatureGate.
    	// Only top-level commands/options setup and the k8s.io/component-base/featuregate/testing package should make use of this.
    	// Tests that need to modify feature gates for the duration of their test should use:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    }
    
    // lookupCmd interprets the initial elements of args
    // to find a command to run (cmd.Runnable() == true)
    // or else a command group that ran out of arguments
    // or had an unknown subcommand (len(cmd.Commands) > 0).
    // It returns that command and the number of elements of args
    // that it took to arrive at that command.
    func lookupCmd(args []string) (cmd *base.Command, used int) {
    	cmd = base.Go
    	for used < len(args) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/go/build/doc.go

    //
    // The bin/ directory holds compiled commands.
    // Each command is named for its source directory, but only
    // using the final element, not the entire path. That is, the
    // command with source in DIR/src/foo/quux is installed into
    // DIR/bin/quux, not DIR/bin/foo/quux. The foo/ is stripped
    // so that you can add DIR/bin to your PATH to get at the
    // installed commands.
    //
    // Here's an example directory layout:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. operator/cmd/mesh/profile.go

    import (
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // ProfileCmd is a group of commands related to profile listing, dumping and diffing.
    func ProfileCmd(_ cli.Context) *cobra.Command {
    	pc := &cobra.Command{
    		Use:   "profile",
    		Short: "Commands related to Istio configuration profiles",
    		Long:  "The profile command lists, dumps or diffs Istio configuration profiles.",
    		Example: "istioctl profile list\n" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/mirror/SetMirrorsSampleModifier.java

                return sample;
            }
            List<Command> commands = sample.getCommands();
            List<Command> modifiedCommands = new ArrayList<Command>();
            for (Command command : commands) {
                if ("gradle".equals(command.getExecutable())) {
                    List<String> args = new ArrayList<String>(command.getArgs());
                    args.add("--init-script");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/engine.go

    //
    // Commands are executed one at a time, and errors are checked for each command;
    // if any command fails unexpectedly, no subsequent commands in the script are
    // executed. The command prefix ! indicates that the command on the rest of the
    // line (typically go or a matching predicate) must fail instead of succeeding.
    // The command prefix ? indicates that the command may or may not succeed, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest.go

    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // ManifestCmd is a group of commands related to manifest generation, installation, diffing and migration.
    func ManifestCmd(ctx cli.Context) *cobra.Command {
    	mc := &cobra.Command{
    		Use:   "manifest",
    		Short: "Commands related to Istio manifests",
    		Long:  "The manifest command generates and diffs Istio manifests.",
    	}
    
    	mgcArgs := &ManifestGenerateArgs{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/operator.go

    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // OperatorCmd is a group of commands related to installation and management of the operator controller.
    func OperatorCmd(ctx cli.Context) *cobra.Command {
    	oc := &cobra.Command{
    		Use:   "operator",
    		Short: "Commands related to Istio operator controller.",
    		Long:  "The operator command installs, dumps, removes and shows the status of the operator controller.",
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. ci/official/utilities/get_versions.sh

    # explicitly, *after* checking if update_version.py needs to be run for a
    # nightly job. update_version.py affects TF_VER_SUFFIX, TF_VER_PYTHON, and
    # TF_VER_FULL.
    
    # Note: in awk, the command '/search/ {commands}' applies the commands to any line that
    # matches the /search/ regular expression. "print $N" prints the Nth "field",
    # where fields are strings separated by whitespace.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top