Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,313 for ncmd (0.14 sec)

  1. src/cmd/link/internal/ld/macho_update_uuid.go

    		return err
    	}
    
    	// Read the load commands, looking for the LC_UUID cmd. If/when we
    	// locate it, overwrite it with a new value produced by
    	// uuidFromGoBuildId.
    	reader := loadCmdReader{next: int64(cmdOffset),
    		f: outf, order: exem.ByteOrder}
    	for i := uint32(0); i < exem.Ncmd; i++ {
    		cmd, err := reader.Next()
    		if err != nil {
    			return err
    		}
    		if cmd.Cmd == LC_UUID {
    			var u uuidCmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. mvnw.cmd

    if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
    if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
    :skipRcPost
    
    @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
    if "%MAVEN_BATCH_PAUSE%"=="on" pause
    
    if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE%
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-discovery/app/cmd.go

    import (
    	"fmt"
    	"strings"
    	"time"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pilot/pkg/bootstrap"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/ctrlz"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/version"
    )
    
    var (
    	serverArgs     *bootstrap.PilotArgs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. operator/cmd/mesh/operator-dump.go

    		Args:  cobra.ExactArgs(0),
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if !labels.IsDNS1123Label(odArgs.common.revision) && cmd.PersistentFlags().Changed("revision") {
    				return fmt.Errorf("invalid revision specified: %v", odArgs.common.revision)
    			}
    			return nil
    		},
    		Run: func(cmd *cobra.Command, args []string) {
    			l := clog.NewConsoleLogger(cmd.OutOrStdout(), cmd.ErrOrStderr(), installerScope)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. cmd/import-boss/testdata/nested-fwd/bbb/file.go

    package bbb
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-sub"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-sub"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 563 bytes
    - Viewed (0)
Back to top