Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 209 for vflag (1.01 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	%.16[1]s help name	# help on specific analyzer and its flags
    `, progname)
    		os.Exit(1)
    	}
    
    	analyzers = analysisflags.Parse(analyzers, true)
    
    	args := flag.Args()
    	if len(args) == 0 {
    		flag.Usage()
    	}
    	if args[0] == "help" {
    		analysisflags.Help(progname, analyzers, args[1:])
    		os.Exit(0)
    	}
    	if len(args) != 1 || !strings.HasSuffix(args[0], ".cfg") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    	< testing/iotest
    	< testing/fstest;
    
    	FMT, flag, math/rand
    	< testing/quick;
    
    	FMT, DEBUG, flag, runtime/trace, internal/sysinfo, math/rand
    	< testing;
    
    	log/slog, testing
    	< testing/slogtest;
    
    	FMT, crypto/sha256, encoding/json, go/ast, go/parser, go/token,
    	internal/godebug, math/rand, encoding/hex, crypto/sha256
    	< internal/fuzz;
    
    	OS, flag, testing, internal/cfg, internal/platform, internal/goroot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf_test.go

    	// size, no ALLOC flag, and the offset should not fall into any of
    	// the segments defined by the program headers.
    	if section.Addr != 0 {
    		t.Fatalf("expected Addr == 0 for .shstrtab got %x", section.Addr)
    	}
    	if section.Size == 0 {
    		t.Fatal("expected nonzero Size for .shstrtab got 0")
    	}
    	if section.Flags&elf.SHF_ALLOC != 0 {
    		t.Fatal("expected zero alloc flag got nonzero for .shstrtab")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

            "initialized"     | []                                  | true
        }
    
        @ToBeImplemented("https://github.com/gradle/gradle/issues/28203")
        def "native services flag should be passed to the daemon and to the worker"() {
            given:
            executer.withArguments(systemProperties.collect { it.toString() })
            buildScript("""
                import org.gradle.workers.WorkParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// +optional
    	CertificateKey string `json:"certificateKey,omitempty"`
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	// +optional
    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/fmt/format.go

    		if width > len(buf) {
    			// We're going to need a bigger boat.
    			buf = make([]byte, width)
    		}
    	}
    
    	// Two ways to ask for extra leading zero digits: %.3d or %03d.
    	// If both are specified the f.zero flag is ignored and
    	// padding with spaces is used instead.
    	prec := 0
    	if f.precPresent {
    		prec = f.prec
    		// Precision of 0 and value of 0 means "print nothing" but padding.
    		if prec == 0 && u == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/os/file_unix.go

    // openFileNolog is the Unix implementation of OpenFile.
    // Changes here should be reflected in openDirAt and openDirNolog, if relevant.
    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	setSticky := false
    	if !supportsCreateWithStickyBit && flag&O_CREATE != 0 && perm&ModeSticky != 0 {
    		if _, err := Stat(name); IsNotExist(err) {
    			setSticky = true
    		}
    	}
    
    	var (
    		r int
    		s poll.SysFile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      }
    
      //     /**
      //      * Spin-waits up to LONG_DELAY_MS until flag becomes true.
      //      */
      //     public void await(AtomicBoolean flag) {
      //         await(flag, LONG_DELAY_MS);
      //     }
    
      //     /**
      //      * Spin-waits up to the specified timeout until flag becomes true.
      //      */
      //     public void await(AtomicBoolean flag, long timeoutMillis) {
      //         long startTime = System.nanoTime();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            file("application/build/reports/tests/unit-test/aggregated-results").assertDoesNotExist()
        }
    
        def 'test verification failure creates aggregated report with --continue flag'() {
            given:file("application/build.gradle") << """
                apply plugin: 'org.gradle.test-report-aggregation'
            """
            file("direct/src/test/java/direct/MultiplierTest.java").java """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pilot/pkg/features/pilot.go

    	InformerWatchNamespace = env.Register("ISTIO_WATCH_NAMESPACE", "",
    		"If set, limit Kubernetes watches to a single namespace. "+
    			"Warning: only a single namespace can be set.").Get()
    
    	// This is a feature flag, can be removed if protobuf proves universally better.
    	KubernetesClientContentType = env.Register("ISTIO_KUBE_CLIENT_CONTENT_TYPE", "protobuf",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top