Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for Commands (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build zos && s390x
    
    package unix
    
    import (
    	"runtime"
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fcntl(fd int, cmd int, arg int) (val int, err error) {
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json

                  }
                }
              }
            }
          ],
          "initContainers": [
            {
              "name": "nameValue",
              "image": "imageValue",
              "command": [
                "commandValue"
              ],
              "args": [
                "argsValue"
              ],
              "workingDir": "workingDirValue",
              "ports": [
                {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.Deployment.json

                    }
                  }
                }
              }
            ],
            "initContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.ReplicaSet.json

                    }
                  }
                }
              }
            ],
            "initContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

                    }
                  }
                }
              }
            ],
            "initContainers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
                ],
                "workingDir": "workingDirValue",
                "ports": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
Back to top