Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 804 for Commands (0.17 sec)

  1. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.EnableDebuggingHandlers, "enable-debugging-handlers", c.EnableDebuggingHandlers, "Enables server endpoints for log collection and local running of containers and commands")
    	fs.BoolVar(&c.EnableContentionProfiling, "contention-profiling", c.EnableContentionProfiling, "Enable block profiling, if profiling is enabled")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    	VendorModulesInGOROOTSrc bool
    
    	// ResolveMissingImports indicates that we should attempt to add module
    	// dependencies as needed to resolve imports of packages that are not found.
    	//
    	// For commands that support the -mod flag, resolving imports may still fail
    	// if the flag is set to "readonly" (the default) or "vendor".
    	ResolveMissingImports bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook.go

    	if holdPod {
    		proxyLocation = MoveFirst
    	}
    
    	// Proxy container should be last, unless HoldApplicationUntilProxyStarts is set
    	// This is to ensure `kubectl exec` and similar commands continue to default to the user's container
    	pod.Spec.Containers = modifyContainers(pod.Spec.Containers, ProxyContainerName, proxyLocation)
    
    	if hasContainer(pod.Spec.InitContainers, ProxyContainerName) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - The helping message of commands which have sub-commands is now clearer and more instructive. It will show the full command instead of `kubectl <command> --help ...`
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    	{masqueradingChain, natPostroutingChain, ""},
    
    	{clusterIPsCheckChain, filterForwardChain, "ct state new"},
    	{clusterIPsCheckChain, filterOutputPostDNATChain, "ct state new"},
    }
    
    // ensureChain adds commands to tx to ensure that chain exists and doesn't contain
    // anything from before this transaction (using createdChains to ensure that we don't
    // Flush a chain more than once and lose *new* rules as well.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // under the theory that most statement types we add in the future will
    // only apply in the main module, like exclude and replace,
    // and so we get better gradual deployments if old go commands
    // simply ignore those statements when found in go.mod files
    // in dependencies.
    func ParseLax(file string, data []byte, fix VersionFixer) (*File, error) {
    	return parseToFile(file, data, fix, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    All test output and summary lines are printed to the go command's
    standard output, even if the test printed them to its own standard
    error. (The go command's standard error is reserved for printing
    errors building the tests.)
    
    The go command places $GOROOT/bin at the beginning of $PATH
    in the test's environment, so that tests that execute
    'go' commands use the same 'go' as the parent 'go test' command.
    
    Go test runs in two different modes:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/go/build/build.go

    }
    
    var errNoModules = errors.New("not using modules")
    
    // importGo checks whether it can use the go command to find the directory for path.
    // If using the go command is not appropriate, importGo returns errNoModules.
    // Otherwise, importGo tries using the go command and reports whether that succeeded.
    // Using the go command lets build.Import and build.Context.Import find code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    		case pkg.flags.has(pkgIsRoot):
    			// pkg is a root of the package-import graph. (Generally this means that
    			// it matches a command-line argument.) We want future invocations of the
    			// 'go' command — such as 'go test' on the same package — to continue to
    			// use the same versions of its dependencies that we are using right now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    deploying a kubelet that is 3 versions older than the version of `kubeadm` (N-3). This aligns with the recent change made by SIG Architecture that extends the support skew between the control plane and kubelets. Tolerate this new kubelet skew for the commands `init`, `join` and `upgrade`. Note that if the `kubeadm` user applies a control plane version that is older than the `kubeadm` version (N-1 maximum) then the skew between the kubelet and control plane would become a maximum of N-2. ([#120825](ht...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top