Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for shale (0.17 sec)

  1. api/go1.3.txt

    pkg syscall (netbsd-386), const MAP_INHERIT_NONE = 2
    pkg syscall (netbsd-386), const MAP_INHERIT_NONE ideal-int
    pkg syscall (netbsd-386), const MAP_INHERIT_SHARE = 0
    pkg syscall (netbsd-386), const MAP_INHERIT_SHARE ideal-int
    pkg syscall (netbsd-386), const MAP_NORESERVE = 64
    pkg syscall (netbsd-386), const MAP_NORESERVE ideal-int
    pkg syscall (netbsd-386), const MAP_PRIVATE = 2
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    	named <local> into the program's exported symbol table as
    	<remote>, so that C code can refer to it by that name. This
    	mechanism makes it possible for C code to call back into Go or
    	to share Go's data.
    
    	For compatibility with current versions of SWIG,
    	#pragma dynexport is an alias for //go:cgo_export_dynamic.
    
    //go:cgo_import_static <local>
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre>
    func (p *Point) Length() float64 {
    	return math.Sqrt(p.x * p.x + p.y * p.y)
    }
    
    func (p *Point) Scale(factor float64) {
    	p.x *= factor
    	p.y *= factor
    }
    </pre>
    
    <p>
    bind the methods <code>Length</code> and <code>Scale</code>,
    with receiver type <code>*Point</code>,
    to the base type <code>Point</code>.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_NONE = 2
    pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_NONE ideal-int
    pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_SHARE = 0
    pkg syscall (netbsd-arm64-cgo), const MAP_INHERIT_SHARE ideal-int
    pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE = 64
    pkg syscall (netbsd-arm64-cgo), const MAP_NORESERVE ideal-int
    pkg syscall (netbsd-arm64-cgo), const MAP_PRIVATE = 2
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    			Mode:       0664,
    			Uid:        1000,
    			Gid:        1000,
    			Uname:      "shane",
    			Gname:      "shane",
    			Size:       7,
    			ModTime:    time.Unix(1350244992, 23960108),
    			ChangeTime: time.Unix(1350244992, 23960108),
    			AccessTime: time.Unix(1350244992, 23960108),
    			Typeflag:   TypeReg,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	if s == "CFType" {
    		return true
    	}
    	if c.getTypeIDs[s] {
    		return true
    	}
    	if i := strings.Index(s, "Mutable"); i >= 0 && c.getTypeIDs[s[:i]+s[i+7:]] {
    		// Mutable and immutable variants share a type ID.
    		return true
    	}
    	return false
    }
    
    // Comment from Darwin's CFInternal.h
    /*
    // Tagged pointer support
    // Low-bit set means tagged object, next 3 bits (currently)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (windows-386), const FILE_NOTIFY_CHANGE_SIZE ideal-int
    pkg syscall (windows-386), const FILE_SHARE_DELETE ideal-int
    pkg syscall (windows-386), const FILE_SHARE_READ ideal-int
    pkg syscall (windows-386), const FILE_SHARE_WRITE ideal-int
    pkg syscall (windows-386), const FILE_TYPE_CHAR ideal-int
    pkg syscall (windows-386), const FILE_TYPE_DISK ideal-int
    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)
  8. src/cmd/asm/internal/asm/parse.go

    			} else {
    				a.Scale = int16(scale)
    			}
    		}
    		p.get(')')
    	} else if scale != 0 {
    		if p.arch.Family == sys.ARM64 {
    			p.errorf("arm64 doesn't support scaled register format")
    		}
    		// First (R) was missing, all we have is (R*scale).
    		a.Reg = 0
    		a.Index = r1
    		a.Scale = int16(scale)
    	}
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. PATENTS

    implementation of Go constitutes direct or contributory patent
    infringement, or inducement of patent infringement, then any patent
    rights granted to you under this License for this implementation of Go
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Dec 06 21:31:59 GMT 2010
    - 1.3K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/1-time.md

    Second, the timer channel associated with a `Timer` or `Ticker` is
    now unbuffered, with capacity 0.
    The main effect of this change is that Go now guarantees
    that for any call to a `Reset` or `Stop` method, no stale values
    prepared before that call will be sent or received after the call.
    Earlier versions of Go used channels with a one-element buffer,
    making it difficult to use `Reset` and `Stop` correctly.
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
Back to top