Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 997 for Commands (0.3 sec)

  1. operator/README.md

    IstioOperator CR.
    1. The controller has additional logic that mirrors istioctl commands like upgrade, but is driven from the declarative
    API rather than command line.
    
    ### Quick tour of CLI commands
    
    #### Flags
    
    The `istioctl` command supports the following flags:
    
    - `dry-run`: console output only, nothing applied to cluster or written to files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/download.go

    module if it is at 'go 1.17' or higher, or all transitively-required modules
    if at 'go 1.16' or lower.
    
    The go command will automatically download modules as needed during ordinary
    execution. The "go mod download" command is useful mainly for pre-filling
    the local cache or to compute the answers for a Go module proxy.
    
    By default, download writes nothing to standard output. It may print progress
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. src/text/template/parse/node.go

    	Cmds     []*CommandNode  // The commands in lexical order.
    }
    
    func (t *Tree) newPipeline(pos Pos, line int, vars []*VariableNode) *PipeNode {
    	return &PipeNode{tr: t, NodeType: NodePipe, Pos: pos, Line: line, Decl: vars}
    }
    
    func (p *PipeNode) append(command *CommandNode) {
    	p.Cmds = append(p.Cmds, command)
    }
    
    func (p *PipeNode) String() string {
    	var sb strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// Apply holds a list of options that are specific to the "kubeadm upgrade apply" command.
    	Apply UpgradeApplyConfiguration
    
    	// Diff holds a list of options that are specific to the "kubeadm upgrade diff" command.
    	Diff UpgradeDiffConfiguration
    
    	// Node holds a list of options that are specific to the "kubeadm upgrade node" command.
    	Node UpgradeNodeConfiguration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. src/cmd/dist/buildtool.go

    //
    // The list has two kinds of entries: names beginning with cmd/ with
    // no other slashes, which are commands, and other paths, which are packages
    // supporting the commands. Packages in the standard library can be listed
    // if a newer copy needs to be substituted for the Go bootstrap copy when used
    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/run.go

    				}
    			}
    		}
    	}
    }
    
    func (cfg *IptablesConfigurator) handleOutboundIncludeRules(
    	rangeInclude NetworkRange,
    	appendRule func(command iptableslog.Command, chain string, table string, params ...string) *builder.IptablesRuleBuilder,
    	insert func(command iptableslog.Command, chain string, table string, position int, params ...string) *builder.IptablesRuleBuilder,
    ) {
    	// Apply outbound IP inclusions.
    	if rangeInclude.IsWildcard {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

        protected AndXServerMessageBlock ( Configuration config, byte command, String name, ServerMessageBlock andx ) {
            super(config, command, name);
            this.andx = andx;
            if ( andx != null ) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
    
        protected AndXServerMessageBlock ( Configuration config, byte command ) {
            this(config, command, null);
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //   - Add a `CertificateValidityPeriod` and `CACertificateValidityPeriod` fields to `ClusterConfiguration`. These fields
    //     can be used to control the validity period of certificates generated by kubeadm during sub-commands such as `init`,
    //     `join`, `upgrade` and `certs`. Default values continue to be 1 year for non-CA certificates and 10 years for CA
    //     certificates. Only non-CA certificates continue to be renewable by `kubeadm certs renew`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/vcweb.go

    // until the script is modified.
    //
    // The script engine includes all of the engine's default commands and
    // conditions, as well as commands for each supported VCS binary (bzr, fossil,
    // git, hg, and svn), a "handle" command that informs the script which protocol
    // or handler to use to serve the request, and utilities "at" (which sets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/clean/clean.go

    archive or binary (what 'go install' would create).
    
    The -n flag causes clean to print the remove commands it would execute,
    but not run them.
    
    The -r flag causes clean to be applied recursively to all the
    dependencies of the packages named by the import paths.
    
    The -x flag causes clean to print remove commands as it executes them.
    
    The -cache flag causes clean to remove the entire go build cache.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top