Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for flagstr (0.12 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    )
    
    const (
    	// flags for CreateToolhelp32Snapshot
    	TH32CS_SNAPHEAPLIST = 0x01
    	TH32CS_SNAPPROCESS  = 0x02
    	TH32CS_SNAPTHREAD   = 0x04
    	TH32CS_SNAPMODULE   = 0x08
    	TH32CS_SNAPMODULE32 = 0x10
    	TH32CS_SNAPALL      = TH32CS_SNAPHEAPLIST | TH32CS_SNAPMODULE | TH32CS_SNAPPROCESS | TH32CS_SNAPTHREAD
    	TH32CS_INHERIT      = 0x80000000
    )
    
    const (
    	// flags for EnumProcessModulesEx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/debug/elf/elf.go

    	PT_GNU_STACK    ProgType = 0x6474e551 /* Stack flags */
    	PT_GNU_RELRO    ProgType = 0x6474e552 /* Read only after relocs */
    	PT_GNU_PROPERTY ProgType = 0x6474e553 /* GNU property */
    	PT_GNU_MBIND_LO ProgType = 0x6474e555 /* Mbind segments start */
    	PT_GNU_MBIND_HI ProgType = 0x6474f554 /* Mbind segments finish */
    
    	PT_PAX_FLAGS ProgType = 0x65041580 /* PAX flags */
    
    	PT_OPENBSD_RANDOMIZE ProgType = 0x65a3dbe6 /* Random data */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    	itf := net.Interface{Index: 0, MTU: 0, Name: "lo", HardwareAddr: nil, Flags: 0}
    	addrs := []net.Addr{
    		&net.IPNet{IP: netutils.ParseIPSloppy("127.0.0.1"), Mask: net.CIDRMask(8, 32)},
    		&net.IPNet{IP: netutils.ParseIPSloppy("::1/128"), Mask: net.CIDRMask(128, 128)},
    	}
    	networkInterfacer.AddInterfaceAddr(&itf, addrs)
    	itf1 := net.Interface{Index: 1, MTU: 0, Name: "eth0", HardwareAddr: nil, Flags: 0}
    	addrs1 := []net.Addr{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"fist_oncoming":                        "\U0001f44a",
    	"fist_raised":                          "\u270a",
    	"fist_right":                           "\U0001f91c",
    	"five":                                 "5\ufe0f\u20e3",
    	"flags":                                "\U0001f38f",
    	"flamingo":                             "\U0001f9a9",
    	"flashlight":                           "\U0001f526",
    	"flat_shoe":                            "\U0001f97f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		SSEC:           crypto.SSEC.IsEncrypted(mopts.meta),
    		Replica:        replStatus == replication.Replica,
    		ExistingObject: mopts.isExistingObjectReplication(),
    	}
    	tagStr, ok := mopts.meta[xhttp.AmzObjectTagging]
    	if ok {
    		opts.UserTags = tagStr
    	}
    	tgtArns := cfg.FilterTargetArns(opts)
    	for _, tgtArn := range tgtArns {
    		tgt := globalBucketTargetSys.GetRemoteTargetClient(bucket, tgtArn)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

        static EntryFactory getFactory(
            Strength keyStrength, boolean usesAccessQueue, boolean usesWriteQueue) {
          int flags =
              ((keyStrength == Strength.WEAK) ? WEAK_MASK : 0)
                  | (usesAccessQueue ? ACCESS_MASK : 0)
                  | (usesWriteQueue ? WRITE_MASK : 0);
          return factories[flags];
        }
    
        /**
         * Creates a new entry.
         *
         * @param segment to create the entry for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. go.sum

    github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
    github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
    github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
    github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top