Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 288 for ncmd (0.47 sec)

  1. src/os/os_windows_test.go

    	newtmp, err := findUnusedDriveLetter()
    	if err != nil {
    		t.Skip(err)
    	}
    
    	cmd := testenv.Command(t, exe, "-test.run=^TestRootDirAsTemp$")
    	cmd.Env = cmd.Environ()
    	cmd.Env = append(cmd.Env, "GO_WANT_HELPER_PROCESS=1")
    	cmd.Env = append(cmd.Env, "TMP="+newtmp)
    	cmd.Env = append(cmd.Env, "TEMP="+newtmp)
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    package work
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"os/exec"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cache"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/str"
    	"cmd/internal/buildid"
    	"cmd/internal/quoted"
    	"cmd/internal/telemetry"
    )
    
    // Build IDs
    //
    // Go packages and binaries are stamped with build IDs that record both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. build/dependencies.yaml

          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/cmd/core.sh
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/fixtures/pkg/kubectl/cmd/set/multi-resource-yaml.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/fixtures/pkg/kubectl/cmd/set/namespaced-resource.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/clean/clean.go

    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cache"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/load"
    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/str"
    	"cmd/go/internal/work"
    )
    
    var CmdClean = &base.Command{
    	UsageLine: "go clean [clean flags] [build flags] [packages]",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. build/root/Makefile

    #
    # Args:
    #   WHAT: List of tests to run, check test/cmd/legacy-script.sh for names.
    #     For example, WHAT=deployment will run run_deployment_tests function.
    # Example:
    #   make test-cmd
    #   make test-cmd WHAT="deployment impersonation"
    endef
    .PHONY: test-cmd
    ifeq ($(PRINT_HELP),y)
    test-cmd:
    	echo "$$TEST_CMD_HELP_INFO"
    else
    test-cmd:
    	hack/make-rules/test-cmd.sh
    endif
    
    define CLEAN_HELP_INFO
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    package ssagen
    
    import (
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"os"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/wasm"
    )
    
    // SymABIs records information provided by the assembler about symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/pgen.go

    import (
    	"fmt"
    	"internal/buildcfg"
    	"os"
    	"sort"
    	"sync"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/inline"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/pgoir"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. Makefile.core.mk

    AGENT_BINARIES:=./pilot/cmd/pilot-agent
    STANDARD_BINARIES:=./istioctl/cmd/istioctl \
      ./pilot/cmd/pilot-discovery \
      ./pkg/test/echo/cmd/client \
      ./pkg/test/echo/cmd/server \
      ./samples/extauthz/cmd/extauthz \
      ./operator/cmd/operator
    
    # These are binaries that require Linux to build, and should
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/internal/trace/trace_test.go

    		// Run the program and capture the trace, which is always written to stdout.
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "run")
    		if race.Enabled {
    			cmd.Args = append(cmd.Args, "-race")
    		}
    		cmd.Args = append(cmd.Args, testPath)
    		cmd.Env = append(os.Environ(), "GOEXPERIMENT=rangefunc")
    		// Add a stack ownership check. This is cheap enough for testing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    	certstestutil "k8s.io/kubernetes/cmd/kubeadm/app/util/certs"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    	etcdutil "k8s.io/kubernetes/cmd/kubeadm/app/util/etcd"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top