Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 209 for vflag (0.05 sec)

  1. src/internal/reflectlite/type.go

    }
    
    func (t rtype) uncommon() *uncommonType {
    	return t.Uncommon()
    }
    
    func (t rtype) String() string {
    	s := t.nameOff(t.Str).Name()
    	if t.TFlag&abi.TFlagExtraStar != 0 {
    		return s[1:]
    	}
    	return s
    }
    
    func (t rtype) common() *abi.Type { return t.Type }
    
    func (t rtype) exportedMethods() []abi.Method {
    	ut := t.uncommon()
    	if ut == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/certs.go

    		kubeConfigDir: kubeadmconstants.KubernetesDir,
    	}
    }
    
    func (o *genCSRConfig) addFlagSet(flagSet *pflag.FlagSet) {
    	options.AddConfigFlag(flagSet, &o.kubeadmConfigPath)
    	options.AddCertificateDirFlag(flagSet, &o.certDir)
    	options.AddKubeConfigDirFlag(flagSet, &o.kubeConfigDir)
    }
    
    // load merges command line flag values into kubeadm's config.
    // Reads Kubeadm config from a file (if present)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/uninstall.go

    	if uiArgs.purge && (uiArgs.revision != "" || uiArgs.filename != "") {
    		l.LogAndPrint(PurgeWithRevisionOrOperatorSpecifiedWarning)
    	}
    	// If only revision flag is set, we would prune resources by the revision label.
    	// Otherwise we would merge the revision flag and the filename flag and delete resources by following the
    	// owning name label.
    	var iop *iopv1alpha1.IstioOperator
    	if uiArgs.filename == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/README

    	count, if given) is found.
    	The -q flag suppresses printing of matches.
    
    help [-v] name...
    	log help text for commands and conditions
    
    	To display help for a specific condition, enclose it in
    	brackets: 'help [amd64]'.
    	To display complete documentation when listing all commands,
    	pass the -v flag.
    
    mkdir path...
    	create directories, if they do not already exist
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/os/file_windows.go

    const DevNull = "NUL"
    
    // openFileNolog is the Windows implementation of OpenFile.
    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	if name == "" {
    		return nil, &PathError{Op: "open", Path: name, Err: syscall.ENOENT}
    	}
    	path := fixLongPath(name)
    	r, e := syscall.Open(path, flag|syscall.O_CLOEXEC, syscallMode(perm))
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    package testing
    
    import (
    	"flag"
    	"fmt"
    	"internal/sysinfo"
    	"io"
    	"math"
    	"os"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    	"unicode"
    )
    
    func initBenchmarkFlags() {
    	matchBenchmarks = flag.String("test.bench", "", "run only benchmarks matching `regexp`")
    	benchmarkMemory = flag.Bool("test.benchmem", false, "print memory allocations for benchmarks")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/import.go

    		// current version of the importing package.
    		tFlag := ""
    		if e.importerIsTest {
    			tFlag = " -t"
    		}
    		version := ""
    		if e.importerVersion != "" {
    			version = "@" + e.importerVersion
    		}
    		hint = fmt.Sprintf("; to add:\n\tgo get%s %s%s", tFlag, e.importer, version)
    	}
    	return message + hint
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/types.go

    type HairpinMode string
    
    // Enum settings for different ways to handle hairpin packets.
    const (
    	// Set the hairpin flag on the veth of containers in the respective
    	// container runtime.
    	HairpinVeth = "hairpin-veth"
    	// Make the container bridge promiscuous. This will force it to accept
    	// hairpin packets, even if the flag isn't set on ports of the bridge.
    	PromiscuousBridge = "promiscuous-bridge"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            then:
            executedAndNotSkipped(":compileJava")
            classJavaVersion(javaClassFile("Parent.class")) == JavaVersion.VERSION_17
        }
    
        def "release flag lower than compiler version does not allow accessing newer Java language features"() {
            def jdk = AvailableJavaHomes.getJdk(JavaVersion.VERSION_17)
    
            buildFile << """
                apply plugin: "java"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/node.go

    	}, nil
    }
    
    // DryRun returns the dryRun flag.
    func (d *nodeData) DryRun() bool {
    	return d.dryRun
    }
    
    // EtcdUpgrade returns the etcdUpgrade flag.
    func (d *nodeData) EtcdUpgrade() bool {
    	return d.etcdUpgrade
    }
    
    // RenewCerts returns the renewCerts flag.
    func (d *nodeData) RenewCerts() bool {
    	return d.renewCerts
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top