Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for flagstr (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (NotEqual (FlagLT)) => (MOVDconst [1])
    (NotEqual (FlagGT)) => (MOVDconst [1])
    
    (LessThan (FlagEQ)) => (MOVDconst [0])
    (LessThan (FlagLT)) => (MOVDconst [1])
    (LessThan (FlagGT)) => (MOVDconst [0])
    
    (LessEqual (FlagEQ)) => (MOVDconst [1])
    (LessEqual (FlagLT)) => (MOVDconst [1])
    (LessEqual (FlagGT)) => (MOVDconst [0])
    
    (GreaterThan (FlagEQ)) => (MOVDconst [0])
    (GreaterThan (FlagLT)) => (MOVDconst [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    		),
    		APIEnablement: genericoptions.NewAPIEnablementOptions(),
    
    		StdOut: out,
    		StdErr: errOut,
    	}
    
    	return o
    }
    
    // AddFlags adds the apiextensions-apiserver flags to the flagset.
    func (o CustomResourceDefinitionsServerOptions) AddFlags(fs *pflag.FlagSet) {
    	o.ServerRunOptions.AddUniversalFlags(fs)
    	o.RecommendedOptions.AddFlags(fs)
    	o.APIEnablement.AddFlags(fs)
    }
    
    // Validate validates the apiextensions-apiserver options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: uint64(x)<uint64(y)
    	// result: (FlagLT)
    	for {
    		y := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint64(x) < uint64(y)) {
    			break
    		}
    		v.reset(OpPPC64FlagLT)
    		return true
    	}
    	// match: (CMPUconst (MOVDconst [x]) [y])
    	// cond: uint64(x)>uint64(y)
    	// result: (FlagGT)
    	for {
    		y := auxIntToInt64(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// depends on the driver which runs the analyzer.
    	Flags flag.FlagSet
    
    	// Run applies the analyzer to a package.
    	// It returns an error if the analyzer failed.
    	//
    	// On success, the Run function may return a result
    	// computed by the Analyzer; its type must match ResultType.
    	// The driver makes this result available as an input to
    	// another Analyzer that depends directly on this one (see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall6(procCM_Get_DevNode_Status.Addr(), 4, uintptr(unsafe.Pointer(status)), uintptr(unsafe.Pointer(problemNumber)), uintptr(devInst), uintptr(flags), 0, 0)
    	ret = CONFIGRET(r0)
    	return
    }
    
    func cm_Get_Device_Interface_List(interfaceClass *GUID, deviceID *uint16, buffer *uint16, bufferLen uint32, flags uint32) (ret CONFIGRET) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. internal/grid/muxclient.go

    	}
    	m.init = true
    	m.singleResp = true
    	msg := message{
    		Op:         OpRequest,
    		MuxID:      m.MuxID,
    		Handler:    h,
    		Flags:      m.BaseFlags | FlagEOF,
    		Payload:    req,
    		DeadlineMS: uint32(m.deadline.Milliseconds()),
    	}
    	if m.subroute != nil {
    		msg.Flags |= FlagSubroute
    	}
    	ch := make(chan Response, 1)
    	m.respMu.Lock()
    	if m.closed {
    		m.respMu.Unlock()
    		return nil, ErrDisconnected
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/options/options_test.go

    )
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.PanicOnError)
    	s := NewOptions()
    	var fss cliflag.NamedFlagSets
    	s.AddFlags(&fss)
    	for _, f := range fss.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	args := []string{
    		"--enable-admission-plugins=AlwaysDeny",
    		"--admission-control-config-file=/admission-control-config",
    		"--advertise-address=192.168.10.10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
              <defaultValue>false</defaultValue>
            </field>
            <field>
              <name>directInvocationOnly</name>
              <version>2.0.0+</version>
              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    					flag = strings.Trim(flag, `"`)
    					flags = append(flags, flag)
    				}
    				src = src[end:]
    				idx = bytes.Index(src, []byte(cgoLdflag))
    			}
    		}
    
    		// We expect to find the contents of cgoLDFLAGS in flags.
    		if len(cgoLDFLAGS) > 0 {
    		outer:
    			for i := range flags {
    				for j, f := range cgoLDFLAGS {
    					if f != flags[i+j] {
    						continue outer
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top