Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for FLAGS (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/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CMPL", argLength: 2, reg: gp2flags, asm: "CMPL", typ: "Flags"},
    		{name: "CMPW", argLength: 2, reg: gp2flags, asm: "CMPW", typ: "Flags"},
    		{name: "CMPB", argLength: 2, reg: gp2flags, asm: "CMPB", typ: "Flags"},
    
    		// CMPxconst: compare arg0 to auxint.
    		{name: "CMPQconst", argLength: 1, reg: gp1flags, asm: "CMPQ", typ: "Flags", aux: "Int32"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/alldocs.go

    //
    //	    // Cgo directives
    //	    CgoCFLAGS    []string // cgo: flags for C compiler
    //	    CgoCPPFLAGS  []string // cgo: flags for C preprocessor
    //	    CgoCXXFLAGS  []string // cgo: flags for C++ compiler
    //	    CgoFFLAGS    []string // cgo: flags for Fortran compiler
    //	    CgoLDFLAGS   []string // cgo: flags for linker
    //	    CgoPkgConfig []string // cgo: pkg-config names
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	// Cgo directives
    	CgoCFLAGS    []string `json:",omitempty"` // cgo: flags for C compiler
    	CgoCPPFLAGS  []string `json:",omitempty"` // cgo: flags for C preprocessor
    	CgoCXXFLAGS  []string `json:",omitempty"` // cgo: flags for C++ compiler
    	CgoFFLAGS    []string `json:",omitempty"` // cgo: flags for Fortran compiler
    	CgoLDFLAGS   []string `json:",omitempty"` // cgo: flags for linker
    	CgoPkgConfig []string `json:",omitempty"` // cgo: pkg-config names
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

                send( new SmbComOpenAndX( unc, access, flags, null ), response );
                f = response.fid;
            }
    
            return f;
        }
        void open( int flags, int access, int attrs, int options ) throws SmbException {
            if( isOpen() ) {
                return;
            }
            fid = open0( flags, access, attrs, options );
            opened = true;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "strip-indent": "^3.0.0"
          },
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/regexp.prototype.flags": {
          "version": "1.5.0",
          "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
          "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  10. 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)
Back to top