Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 420 for flagstr (0.11 sec)

  1. src/runtime/netpoll_kqueue.go

    	// for the whole fd lifetime. The notifications are automatically unregistered
    	// when fd is closed.
    	var ev [2]keventt
    	*(*uintptr)(unsafe.Pointer(&ev[0].ident)) = fd
    	ev[0].filter = _EVFILT_READ
    	ev[0].flags = _EV_ADD | _EV_CLEAR
    	ev[0].fflags = 0
    	ev[0].data = 0
    
    	if goarch.PtrSize == 4 {
    		// We only have a pointer-sized field to store into,
    		// so on a 32-bit system we get no sequence protection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tests/binary/binaries_test.go

    		validateField(t, "GitTag", verInfo.GitTag)
    	})
    }
    
    var (
    	nonGoBinaries      = sets.New("ztunnel", "envoy")
    	nonVersionBinaries = sets.New("client", "server")
    )
    
    // Test that flags do not get polluted with unexpected flags
    func TestFlags(t *testing.T) {
    	runBinariesTest(t, func(t *testing.T, name string) {
    		if nonGoBinaries.Contains(name) {
    			return
    		}
    		cmd := path.Join(*releasedir, name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	cgoCtxt int
    
    	// calleeFuncID is the function ID of the caller of the current
    	// frame.
    	calleeFuncID abi.FuncID
    
    	// flags are the flags to this unwind. Some of these are updated as we
    	// unwind (see the flags documentation).
    	flags unwindFlags
    }
    
    // init initializes u to start unwinding gp's stack and positions the
    // iterator on gp's innermost frame. gp must not be the current G.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Kapt produces deprecation warnings
    flags: "--warning-mode=all"
    expected-output-file: sanityCheck.out
    allow-additional-output: true
    
    # Note, upon upgrading Kapt to a version that does not emit a warning,
    # this test will fail. Simply delete this sanityCheck test, as it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/features/features.go

    	deprecatedMsg := map[string]string{}
    	for k := range features {
    		featureSpec, ok := (*f)[k]
    		if !ok {
    			// This case should never happen, it is implemented only as a sentinel
    			// for removal of flags executed when flags are still in use (always before deprecate, then after one cycle remove)
    			deprecatedMsg[k] = fmt.Sprintf("Unknown feature gate flag: %s", k)
    		}
    
    		if featureSpec.PreRelease == featuregate.Deprecated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. cmd/kubemark/app/hollow_node.go

    			verflag.PrintAndExitIfRequested()
    			cliflag.PrintFlags(cmd.Flags())
    			return run(cmd.Context(), s)
    		},
    		Args: func(cmd *cobra.Command, args []string) error {
    			for _, arg := range args {
    				if len(arg) > 0 {
    					return fmt.Errorf("%q does not take any arguments, got %q", cmd.CommandPath(), args)
    				}
    			}
    			return nil
    		},
    	}
    
    	fs := cmd.Flags()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. releasenotes/notes/47740.yaml

      This promotion should not result in any loss of functionality. However, the request is now sent based on xDS instead of HTTP, and we have introduced a 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 443 bytes
    - Viewed (0)
  8. src/os/dir_windows.go

    	var flags uint32
    	err := windows.GetVolumeInformationByHandle(h, nil, 0, &d.vol, nil, &flags, nil, 0)
    	if err != nil {
    		d.vol = 0 // Set to zero in case Windows writes garbage to it.
    		// If we can't get the volume information, we can't use os.SameFile,
    		// but we can still read the directory entries.
    		return
    	}
    	if flags&windows.FILE_SUPPORTS_OBJECT_IDS == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. build/root/Makefile

    #     "vendor/<module>/<path>" is accepted as alias for "<module>/<path>".
    #     "ginkgo" is an alias for the ginkgo CLI.
    #   GOFLAGS: Extra flags to pass to 'go' when building.
    #   GOLDFLAGS: Extra linking flags passed to 'go' when building.
    #   GOGCFLAGS: Additional go compile flags passed to 'go' when building.
    #   DBG: If set to "1", build with optimizations disabled for easier
    #     debugging.  Any other value is ignored.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    // ValidateMixedArguments validates passed arguments
    func ValidateMixedArguments(flag *pflag.FlagSet) error {
    	// If --config isn't set, we have nothing to validate
    	if !flag.Changed("config") {
    		return nil
    	}
    
    	mixedInvalidFlags := []string{}
    	flag.Visit(func(f *pflag.Flag) {
    		if isAllowedFlag(f.Name) {
    			// "--skip-*" flags or other allowed flags can be set with --config
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top