Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for proident (0.28 sec)

  1. src/archive/tar/fuzz_test.go

    	err := w.WriteHeader(&Header{
    		Name: "lorem.txt",
    		Mode: 0600,
    		Size: int64(len(inp)),
    	})
    	if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	goVoidPtr                              ast.Expr // unsafe.Pointer or *byte
    
    	ptrSize int64
    	intSize int64
    }
    
    var tagGen int
    var typedef = make(map[string]*Type)
    var goIdent = make(map[string]*ast.Ident)
    
    // unionWithPointer is true for a Go type that represents a C union (or class)
    // that may contain a pointer. This is used for cgo pointer checking.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (windows-386), type ProcessInformation struct, ThreadId uint32
    pkg syscall (windows-386), type Protoent struct
    pkg syscall (windows-386), type Protoent struct, Aliases **uint8
    pkg syscall (windows-386), type Protoent struct, Name *uint8
    pkg syscall (windows-386), type Protoent struct, Proto uint16
    pkg syscall (windows-386), type RawSockaddr struct, Data [14]int8
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. src/cmd/cgo/godefs.go

    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    				override[id.Name] = new
    			}
    		}
    	}
    
    	// Apply overrides.
    	for old, new := range override {
    		if id := goIdent[old]; id != nil {
    			id.Name = new
    		}
    	}
    
    	// Any names still using the _C syntax are not going to compile,
    	// although in general we don't know whether they all made it
    	// into the file, so we can't warn here.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Sep 08 14:33:35 GMT 2022
    - 4.5K bytes
    - Viewed (0)
  5. src/bytes/example_test.go

    }
    
    func ExampleLastIndex() {
    	fmt.Println(bytes.Index([]byte("go gopher"), []byte("go")))
    	fmt.Println(bytes.LastIndex([]byte("go gopher"), []byte("go")))
    	fmt.Println(bytes.LastIndex([]byte("go gopher"), []byte("rodent")))
    	// Output:
    	// 0
    	// 3
    	// -1
    }
    
    func ExampleLastIndexAny() {
    	fmt.Println(bytes.LastIndexAny([]byte("go gopher"), "MüQp"))
    	fmt.Println(bytes.LastIndexAny([]byte("go 地鼠"), "地大"))
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
Back to top