Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 815 for flagstr (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    			l = append(l, *s)
    		}
    	}
    	return l
    }
    
    // installConfigFlags creates command line flags for configuration
    // fields and returns a function which can be called after flags have
    // been parsed to copy any flags specified on the command line to
    // *cfg.
    func installConfigFlags(flag plugin.FlagSet, cfg *config) func() error {
    	// List of functions for setting the different parts of a config.
    	var setters []func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	56:   {region: 0x166, script: 0x5b, flags: 0x0},
    	57:   {region: 0x166, script: 0x5b, flags: 0x0},
    	58:   {region: 0x6c, script: 0x5, flags: 0x0},
    	59:   {region: 0x0, script: 0x3, flags: 0x1},
    	60:   {region: 0x166, script: 0x5b, flags: 0x0},
    	61:   {region: 0x51, script: 0x5b, flags: 0x0},
    	62:   {region: 0x3f, script: 0x5b, flags: 0x0},
    	63:   {region: 0x68, script: 0x5, flags: 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

            } else if (event.getCategory().equals(ProgressStartEvent.TASK_CATEGORY)) {
                flags |= CATEGORY_IS_TASK;
            } else {
                flags |= CATEGORY_NAME;
            }
    
            encoder.writeSmallInt(flags);
    
            encoder.writeSmallLong(event.getProgressOperationId().getId());
            if (parentProgressOperationId != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/testing/testserver.go

    	if err != nil {
    		return result, fmt.Errorf("failed to create temp dir: %v", err)
    	}
    
    	fs := pflag.NewFlagSet("test", pflag.PanicOnError)
    
    	opts := options.NewOptions()
    	nfs := opts.Flags
    	for _, f := range nfs.FlagSets {
    		fs.AddFlagSet(f)
    	}
    	fs.Parse(customFlags)
    
    	if opts.SecureServing.BindPort != 0 {
    		opts.SecureServing.Listener, opts.SecureServing.BindPort, err = createListenerOnFreePort()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 10:35:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/base.go

    	// Short is the short description shown in the 'go help' output.
    	Short string
    
    	// Long is the long message shown in the 'go help <this-command>' output.
    	Long string
    
    	// Flag is a set of flags specific to this command.
    	Flag flag.FlagSet
    
    	// CustomFlags indicates that the command will do its own
    	// flag parsing.
    	CustomFlags bool
    
    	// Commands lists the available commands and help topics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/internal/buildcfg/exp.go

    			}
    			set(val)
    		}
    	}
    
    	if regabiAlwaysOn {
    		flags.RegabiWrappers = true
    		flags.RegabiArgs = true
    	}
    	// regabi is only supported on amd64, arm64, loong64, riscv64, ppc64 and ppc64le.
    	if !regabiSupported {
    		flags.RegabiWrappers = false
    		flags.RegabiArgs = false
    	}
    	// Check regabi dependencies.
    	if flags.RegabiArgs && !flags.RegabiWrappers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/DefaultFeatureFlagsTest.groovy

            flag.systemPropertyName >> "prop"
    
            expect:
            !flags.isEnabled(flag)
            !flags.isEnabledWithApi(flag)
        }
    
        def "can explicitly enable flag"() {
            def flag = Stub(FeatureFlag)
            flag.systemPropertyName >> null
            flags.enable(flag)
    
            expect:
            flags.isEnabled(flag)
            flags.isEnabledWithApi(flag)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/regexp/syntax/regexp.go

    		*flags = make(map[*Regexp]printFlags)
    	}
    	(*flags)[start] = f
    	(*flags)[last] |= flagOff // maybe start==last
    }
    
    // calcFlags calculates the flags to print around each subexpression in re,
    // storing that information in (*flags)[sub] for each affected subexpression.
    // The first time an entry needs to be written to *flags, calcFlags allocates the map.
    // calcFlags also calculates the flags that must be active or can't be active
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    }
    
    // newFlagSetWithGlobals constructs a new pflag.FlagSet with global flags registered
    // on it.
    func newFlagSetWithGlobals() *pflag.FlagSet {
    	fs := pflag.NewFlagSet("", pflag.ExitOnError)
    	// set the normalize func, similar to k8s.io/component-base/cli//flags.go:InitFlags
    	fs.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	// explicitly add flags from libs that register global flags
    	options.AddGlobalFlags(fs)
    	return fs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    		Admission:                  NewAdmissionOptions(),
    		EgressSelector:             NewEgressSelectorOptions(),
    		Traces:                     NewTracingOptions(),
    	}
    }
    
    func (o *RecommendedOptions) AddFlags(fs *pflag.FlagSet) {
    	o.Etcd.AddFlags(fs)
    	o.SecureServing.AddFlags(fs)
    	o.Authentication.AddFlags(fs)
    	o.Authorization.AddFlags(fs)
    	o.Audit.AddFlags(fs)
    	o.Features.AddFlags(fs)
    	o.CoreAPI.AddFlags(fs)
    	o.Admission.AddFlags(fs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top