Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for flagstr (0.12 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. src/cmd/link/internal/ld/elf.go

    			ehdr.Flags = 1 /* Version 1 ABI */
    		} else {
    			ehdr.Flags = 2 /* Version 2 ABI */
    		}
    		fallthrough
    	case sys.AMD64, sys.ARM64, sys.Loong64, sys.MIPS64, sys.RISCV64:
    		if ctxt.Arch.Family == sys.MIPS64 {
    			ehdr.Flags = 0x20000004 /* MIPS 3 CPIC */
    		}
    		if ctxt.Arch.Family == sys.Loong64 {
    			ehdr.Flags = 0x43 /* DOUBLE_FLOAT, OBJABI_V1 */
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CMPWconst (MOVDconst [x]) [y]) && int32(x)>int32(y) => (FlagGT)
    (CMPWUconst (MOVDconst [x]) [y]) && uint32(x)==uint32(y) => (FlagEQ)
    (CMPWUconst (MOVDconst [x]) [y]) && uint32(x)<uint32(y) => (FlagLT)
    (CMPWUconst (MOVDconst [x]) [y]) && uint32(x)>uint32(y) => (FlagGT)
    
    (CMP(W|WU)const (MOVBZreg _) [c]) &&   0xff < c => (FlagLT)
    (CMP(W|WU)const (MOVHZreg _) [c]) && 0xffff < c => (FlagLT)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    }
    
    func TestAddFlags(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.ContinueOnError)
    	s, _ := NewKubeControllerManagerOptions()
    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	fs.Parse(args)
    	// Sort GCIgnoredResources because it's built from a map, which means the
    	// insertion order is random.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "CMPU", argLength: 2, reg: gp2flags, asm: "CMPU", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPWU", argLength: 2, reg: gp2flags, asm: "CMPWU", typ: "Flags"}, // arg0 compare to arg1
    
    		{name: "CMPconst", argLength: 1, reg: gp1flags, asm: "CMP", typ: "Flags", aux: "Int32"},     // arg0 compare to auxint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	}
    	return fanotifyMark(fd, flags, mask, dirFd, p)
    }
    
    //sys	fchmodat(dirfd int, path string, mode uint32) (err error)
    //sys	fchmodat2(dirfd int, path string, mode uint32, flags int) (err error)
    
    func Fchmodat(dirfd int, path string, mode uint32, flags int) error {
    	// Linux fchmodat doesn't support the flags parameter, but fchmodat2 does.
    	// Try fchmodat2 if flags are specified.
    	if flags != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    }
    
    // Parsing.
    
    // Parse parses a regular expression string s, controlled by the specified
    // Flags, and returns a regular expression parse tree. The syntax is
    // described in the top-level comment.
    func Parse(s string, flags Flags) (*Regexp, error) {
    	return parse(s, flags)
    }
    
    func parse(s string, flags Flags) (_ *Regexp, err error) {
    	defer func() {
    		switch r := recover(); r {
    		default:
    			panic(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func impl_Dup3(oldfd int, newfd int, flags int) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_DUP3<<4, uintptr(oldfd), uintptr(newfd), uintptr(flags))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_Dup3Addr() *(func(oldfd int, newfd int, flags int) (err error))
    
    var Dup3 = enter_Dup3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ADDSconstflags", argLength: 1, reg: gp11flags, typ: "(UInt64,Flags)", asm: "ADDS", aux: "Int64"},      // arg0+auxint, set flags.
    		{name: "ADDSflags", argLength: 2, reg: gp21flags, typ: "(UInt64,Flags)", asm: "ADDS", commutative: true},      // arg0+arg1, set flags.
    		{name: "SUB", argLength: 2, reg: gp21, asm: "SUB"},                                                            // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top