Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for vflag (0.11 sec)

  1. src/cmd/dist/build.go

    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	flag.BoolVar(&noRebuild, "no-rebuild", false, "overrides -rebuild (historical dreg)")
    	flag.BoolVar(&t.keepGoing, "k", false, "keep going even when error occurred")
    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    		t.Errorf("Got different run options than expected.\nDifference detected on:\n%s", cmp.Diff(expected, s))
    	}
    }
    
    func TestApplyTo(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.ContinueOnError)
    	s, _ := NewKubeControllerManagerOptions()
    	// flag set to parse the args that are required to start the kube controller manager
    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    	options.AddGlobalFlags(fs)
    	return fs
    }
    
    // newFakeFlagSet constructs a pflag.FlagSet with the same flags as fs, but where
    // all values have noop Set implementations
    func newFakeFlagSet(fs *pflag.FlagSet) *pflag.FlagSet {
    	ret := pflag.NewFlagSet("", pflag.ExitOnError)
    	ret.SetNormalizeFunc(fs.GetNormalizeFunc())
    	fs.VisitAll(func(f *pflag.Flag) {
    		ret.VarP(cliflag.NoOp{}, f.Name, f.Shorthand, f.Usage)
    	})
    	return ret
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_FsetxattrAddr() *(func(fd int, attr string, data []byte, flag int) (err error))
    
    var Fsetxattr = enter_Fsetxattr
    
    func enter_Fsetxattr(fd int, attr string, data []byte, flag int) (err error) {
    	funcref := get_FsetxattrAddr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    `,
    }
    
    var (
    	getD        dFlag
    	getF        = CmdGet.Flag.Bool("f", false, "")
    	getFix      = CmdGet.Flag.Bool("fix", false, "")
    	getM        = CmdGet.Flag.Bool("m", false, "")
    	getT        = CmdGet.Flag.Bool("t", false, "")
    	getU        upgradeFlag
    	getInsecure = CmdGet.Flag.Bool("insecure", false, "")
    	// -v is cfg.BuildV
    )
    
    // upgradeFlag is a custom flag.Value for -u.
    type upgradeFlag struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    		return
    	}
    
    	// Compute function info flags.
    	flag := f.flag
    	if f.funcID == abi.FuncID_cgocallback {
    		// cgocallback does write SP to switch from the g0 to the curg stack,
    		// but it carefully arranges that during the transition BOTH stacks
    		// have cgocallback frame valid for unwinding through.
    		// So we don't need to exclude it with the other SP-writing functions.
    		flag &^= abi.FuncFlagSPWrite
    	}
    	if isSyscall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This flag specifies whether TensorFlow 2.0 API should be built instead
    # of 1.* API. Note that TensorFlow 2.0 API is currently under development.
    config_setting(
        name = "api_version_2",
        define_values = {"tf_api_version": "2"},
        visibility = ["//visibility:public"],
    )
    
    # This flag enables experimental MLIR support.
    config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    ## Changelog since v1.30.0
    
    ## Urgent Upgrade Notes
    
    ### (No, really, you MUST read this before you upgrade)
    
     - Kubelet flag `--keep-terminated-pod-volumes` was removed.  This flag was deprecated in 2017. ([#122082](https://github.com/kubernetes/kubernetes/pull/122082), [@carlory](https://github.com/carlory)) [SIG Apps, Node, Storage and Testing]
     
    ## Changes by Kind
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    import (
    	"encoding/json"
    	"fmt"
    	"math"
    	"math/big"
    	"math/rand"
    	"os"
    	"strings"
    	"testing"
    	"unicode"
    
    	"github.com/google/go-cmp/cmp"
    	fuzz "github.com/google/gofuzz"
    	"github.com/spf13/pflag"
    	inf "gopkg.in/inf.v0"
    
    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    )
    
    var (
    	bigMostPositive = big.NewInt(mostPositive)
    	bigMostNegative = big.NewInt(mostNegative)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top