Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,167 for command1 (0.18 sec)

  1. src/cmd/go/internal/modcmd/tidy.go

    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    version. By default, tidy acts as if the -compat flag were set to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_flags.txt

    # *and* output from the test should not be echoed.
    go test ./x -- -test.v
    stdout '\Aok\s+example.com/x\s+[0-9.s]+\n\z'
    ! stderr .
    
    # For backward-compatibility with previous releases of the 'go' command,
    # arguments that appear after unrecognized flags should not be treated
    # as packages, even if they are unambiguously not arguments to flags.
    # Even though ./x looks like a package path, the real package should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/panic.json

    {"Action":"output","Test":"TestPanic","Output":"panic(0x1110ea0, 0x116aea0)\n"}
    {"Action":"output","Test":"TestPanic","Output":"\t/go/src/runtime/panic.go:679 +0x1b2\n"}
    {"Action":"output","Test":"TestPanic","Output":"command-line-arguments.TestPanic(0xc000092100)\n"}
    {"Action":"output","Test":"TestPanic","Output":"\ta_test.go:6 +0x39\n"}
    {"Action":"output","Test":"TestPanic","Output":"testing.tRunner(0xc000092100, 0x114f500)\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_retention.txt

    # TODO(#42504): add case for 'go list -mod=mod -tags=any all' when -tags=any
    # is supported. Only a command that loads "all" without build constraints
    # (except "ignore") has enough information to add "// indirect" comments.
    # 'go mod tidy' and 'go mod vendor' are the only commands that do that,
    # but 'go mod vendor' cannot write go.mod.
    cp go.mod.toodirect go.mod
    go list all
    cmp go.mod go.mod.toodirect
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 3K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/constants/constants.go

    )
    
    var BuiltInChainsMap = map[string]struct{}{
    	INPUT:       {},
    	OUTPUT:      {},
    	FORWARD:     {},
    	PREROUTING:  {},
    	POSTROUTING: {},
    }
    
    // Constants used for generating iptables commands
    const (
    	TCP = "tcp"
    	UDP = "udp"
    
    	TPROXY   = "TPROXY"
    	RETURN   = "RETURN"
    	ACCEPT   = "ACCEPT"
    	REDIRECT = "REDIRECT"
    	MARK     = "MARK"
    	CT       = "CT"
    	DROP     = "DROP"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. istioctl/pkg/internaldebug/internal-debug.go

    		namespace, serviceAccount, kubeClient, multixds.DefaultOptions)
    	if respErr != nil {
    		return xdsResponses, respErr
    	}
    	_, _ = fmt.Fprint(writer, "error: according to below command list, please check all supported internal debug commands\n")
    	return xdsResponses, nil
    }
    
    func HandlerForDebugErrors(kubeClient kube.CLIClient,
    	centralOpts *clioptions.CentralControlPlaneOptions,
    	writer io.Writer,
    	istioNamespace string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/dependencies/implementation.go

    		return ""
    	}
    }
    
    // IsWriteCmd returns true for all command types that do write actions (and thus need a lock)
    func (v IptablesVersion) IsWriteCmd(cmd constants.IptablesCmd) bool {
    	switch cmd {
    	case constants.IPTables:
    		return true
    	case constants.IPTablesRestore:
    		return true
    	default:
    		return false
    	}
    }
    
    // Constants for iptables commands
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K 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. cmd/kubeadm/app/cmd/token.go

    }
    
    // newCmdTokenGenerate returns cobra.Command to generate new token
    func newCmdTokenGenerate(out io.Writer) *cobra.Command {
    	return &cobra.Command{
    		Use:   "generate",
    		Short: "Generate and print a bootstrap token, but do not create it on the server",
    		Long: dedent.Dedent(`
    			This command will print out a randomly-generated bootstrap token that can be used with
    			the "init" and "join" commands.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. 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)
Back to top