Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for Commands (1.36 sec)

  1. istioctl/cmd/root.go

    	seenCommands := make(map[*cobra.Command]bool)
    	var commandStack []*cobra.Command
    
    	commandStack = append(commandStack, rootCmd)
    
    	for len(commandStack) > 0 {
    		n := len(commandStack) - 1
    		curCmd := commandStack[n]
    		commandStack = commandStack[:n]
    		seenCommands[curCmd] = true
    		for _, command := range curCmd.Commands() {
    			if !seenCommands[command] {
    				commandStack = append(commandStack, command)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. releasenotes/notes/otel-accesslog-formatter.yaml

    area: telemetry
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 02:59:27 UTC 2024
    - 322 bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // and test commands:
    //
    //	-C dir
    //		Change to dir before running the command.
    //		Any files named on the command line are interpreted after
    //		changing directories.
    //		If used, this flag must be the first one in the command line.
    //	-a
    //		force rebuilding of packages that are already up-to-date.
    //	-n
    //		print the commands but do not run them.
    //	-p n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    The bin directory holds compiled commands.
    Each command is named for its source directory, but only
    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/" prefix is stripped
    so that you can add DIR/bin to your PATH to get at the
    installed commands. If the GOBIN environment variable is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. common/scripts/setup_env.sh

    fi
    
    # gitconfig conditional host mount (needed for git commands inside container)
    if [[ -f "${HOME}/.gitconfig" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.gitconfig,destination=/home/.gitconfig,readonly "
    fi
    
    # .netrc conditional host mount (needed for git commands inside container)
    if [[ -f "${HOME}/.netrc" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    type Root int
    
    const (
    	// AutoRoot is the default for most commands. modload.Init will look for
    	// a go.mod file in the current directory or any parent. If none is found,
    	// modules may be disabled (GO111MODULE=auto) or commands may run in a
    	// limited module mode.
    	AutoRoot Root = iota
    
    	// NoRoot is used for commands that run in module mode and ignore any go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/modget/get.go

    is a pipe-separated list of allowed version control commands, or "all"
    to allow use of any known command, or "off" to disallow all commands.
    Note that if a module matches a pattern with vcslist "off", it may still be
    downloaded if the origin server uses the "mod" scheme, which instructs the
    go command to download the module using the GOPROXY protocol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. pkg/envoy/proxy.go

    )
    
    func (e *envoy) Run(abort <-chan error) error {
    	// spin up a new Envoy process
    	args := e.args(e.ConfigPath, istioBootstrapOverrideVar.Get())
    	log.Infof("Envoy command: %v", args)
    
    	/* #nosec */
    	cmd := exec.Command(e.BinaryPath, args...)
    	cmd.Env = os.Environ()
    	if common_features.CompliancePolicy == common_features.FIPS_140_2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/dashboard_test.go

    	}
    }
    
    // extractQueries pulls all prometheus queries out of a grafana dashboard
    // Rather than importing the entire grafana API just for this test, do some shoddy json parsing
    // Equivalent to the union of the jq commands:
    // '.panels[].targets[]?.expr' and '.panels[].panels[]?.targets[]?.expr'
    func extractQueries(dash string) ([]string, error) {
    	var queries []string
    	js := map[string]any{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top