Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,646 for ncmd (0.04 sec)

  1. pkg/cmd/cmd.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cmd
    
    import (
    	"flag"
    	"os"
    	"os/signal"
    	"syscall"
    
    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    
    	"istio.io/istio/pkg/log"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. hack/make-rules/test-cmd.sh

      # build kubeadm
      make all -C "${KUBE_ROOT}" WHAT=cmd/kubeadm
      # unless the user sets KUBEADM_PATH, assume that "make all..." just built it
      export KUBEADM_PATH="${KUBEADM_PATH:=$(kube::realpath "${KUBE_ROOT}")/_output/local/go/bin/kubeadm}"
      # invoke the tests
      make -C "${KUBE_ROOT}" test \
        WHAT=k8s.io/kubernetes/cmd/kubeadm/test/cmd \
        KUBE_TIMEOUT=--timeout=240s \
        KUBE_RACE=""
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/shared/init.cmd

    Michael Osipov <******@****.***> 1670509300 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/shared/mvnlauncher.cmd

    Hervé Boutemy <******@****.***> 1633889256 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Oct 16 17:44:39 UTC 2021
    - 150 bytes
    - Viewed (0)
  5. configure.cmd

    Myung-Hyun Kim <******@****.***> 1597138062 +0900
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 11 09:27:42 UTC 2020
    - 782 bytes
    - Viewed (0)
  6. releasenotes/notes/revision-cmd.yaml

    Suchith J N <******@****.***> 1611676381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 15:53:01 UTC 2021
    - 408 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/preflight/utils_test.go

    		t.Run(tc.output, func(t *testing.T) {
    			fcmd := fakeexec.FakeCmd{
    				OutputScript: []fakeexec.FakeAction{
    					func() ([]byte, []byte, error) { return []byte(tc.output), nil, tc.err },
    				},
    			}
    			fexec := &fakeexec.FakeExec{
    				CommandScript: []fakeexec.FakeCommandAction{
    					func(cmd string, args ...string) utilsexec.Cmd { return fakeexec.InitFakeCmd(&fcmd, cmd, args...) },
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 11:33:44 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. pkg/proxy/conntrack/conntrack_test.go

    }
    
    type testCT struct {
    	execCT
    
    	fcmd *fakeexec.FakeCmd
    }
    
    func makeCT(result fakeexec.FakeAction) *testCT {
    	fcmd := &fakeexec.FakeCmd{
    		CombinedOutputScript: []fakeexec.FakeAction{result},
    	}
    	fexec := &fakeexec.FakeExec{
    		CommandScript: []fakeexec.FakeCommandAction{
    			func(cmd string, args ...string) exec.Cmd { return fakeexec.InitFakeCmd(fcmd, cmd, args...) },
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:08:36 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. releasenotes/notes/remove-register-deregister-cmd.yaml

    carolynhu <******@****.***> 1608088061 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 16 03:07:41 UTC 2020
    - 154 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/version.txt

    stdout -buildmode=exe
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    # Check the build info of a binary built from $GOROOT/src/cmd
    go build -o test2json.exe cmd/test2json
    go version -m test2json.exe
    stdout -buildmode=exe
    stdout '^test2json.exe: .+'
    stdout '^\tpath\tcmd/test2json$'
    ! stdout 'mod[^e]'
    
    # Repeat the test with -buildmode=pie and default linking.
    [!buildmode:pie] stop
    [pielinkext] [!cgo] stop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top