Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,159 for Commands (0.12 sec)

  1. src/cmd/go/testdata/script/modfile_flag.txt

    grep '^rsc.io/quote v1.5.2/go.mod ' go.alt.sum
    ! grep '^rsc.io/quote v1.5.2 ' go.alt.sum
    
    # other 'go mod' commands should work. 'go mod vendor' is tested later.
    go mod download rsc.io/quote
    go mod graph
    stdout rsc.io/quote
    go mod tidy
    grep rsc.io/quote go.alt.sum
    go mod verify
    go mod why rsc.io/quote
    
    
    # 'go list' and other commands with build flags should work.
    # They should update the alternate go.mod when a dependency is missing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/genyaml/gen_kubectl_yaml.go

    	})
    
    	return result
    }
    
    func genYaml(command *cobra.Command, parent, docsDir string) {
    	doc := cmdDoc{}
    
    	doc.Name = command.Name()
    	doc.Synopsis = forceMultiLine(command.Short)
    	doc.Description = forceMultiLine(command.Long)
    
    	flags := command.NonInheritedFlags()
    	if flags.HasFlags() {
    		doc.Options = genFlagResult(flags)
    	}
    	flags = command.InheritedFlags()
    	if flags.HasFlags() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/script/cmds.go

    		})
    }
    
    // Wait waits for the completion of background commands.
    //
    // When Wait returns, the stdout and stderr buffers contain the concatenation of
    // the background commands' respective outputs in the order in which those
    // commands were started.
    func Wait() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "wait for completion of background commands",
    			Args:    "",
    			Detail: []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/tests/publish.sample.conf

    commands: [{
        executable: gradle
        args: publish
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 57 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/multiproject/multiple-subprojects/tests/test.sample.conf

    commands: [{
        executable: gradle
        args: build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 55 bytes
    - Viewed (0)
Back to top