Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for unshare (0.28 sec)

  1. go.sum

    github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM=
    github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg=
    github.com/howardjohn/unshare-go v0.4.0 h1:gqPNhMC5Ng4sJPv3XfIxKDjE7cyXRsRh+sPFPbesTgo=
    github.com/howardjohn/unshare-go v0.4.0/go.mod h1:cJjyFAN6qTA70ovC2VR23iAZuJ8X3J/ibAbT693pJ8g=
    github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		}
    	}
    
    	if !opts.IgnoreImports {
    		// Cgo translation adds imports of "unsafe", "runtime/cgo" and "syscall",
    		// except for certain packages, to avoid circular dependencies.
    		if p.UsesCgo() {
    			addImport("unsafe", true)
    		}
    		if p.UsesCgo() && (!p.Standard || !cgoExclude[p.ImportPath]) && cfg.BuildContext.Compiler != "gccgo" {
    			addImport("runtime/cgo", true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    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/reflect/value.go

    // without doing any allocations.
    type hiter struct {
    	key         unsafe.Pointer
    	elem        unsafe.Pointer
    	t           unsafe.Pointer
    	h           unsafe.Pointer
    	buckets     unsafe.Pointer
    	bptr        unsafe.Pointer
    	overflow    *[]unsafe.Pointer
    	oldoverflow *[]unsafe.Pointer
    	startBucket uintptr
    	offset      uint8
    	wrapped     bool
    	B           uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	out.QuantityValue = (*apiresource.Quantity)(unsafe.Pointer(in.QuantityValue))
    	out.BoolValue = (*bool)(unsafe.Pointer(in.BoolValue))
    	out.IntValue = (*int64)(unsafe.Pointer(in.IntValue))
    	out.IntSliceValue = (*resource.NamedResourcesIntSlice)(unsafe.Pointer(in.IntSliceValue))
    	out.StringValue = (*string)(unsafe.Pointer(in.StringValue))
    	out.StringSliceValue = (*resource.NamedResourcesStringSlice)(unsafe.Pointer(in.StringSliceValue))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		}
    		ts.g.set(mp.g0)
    		ts.tls = (*uint64)(unsafe.Pointer(&mp.tls[0]))
    		ts.fn = unsafe.Pointer(abi.FuncPCABI0(mstart))
    		if msanenabled {
    			msanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
    		}
    		if asanenabled {
    			asanwrite(unsafe.Pointer(&ts), unsafe.Sizeof(ts))
    		}
    		execLock.rlock() // Prevent process clone.
    		asmcgocall(_cgo_thread_start, unsafe.Pointer(&ts))
    		execLock.runlock()
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    func (addr *SocketAddress) IP() net.IP {
    	if uintptr(addr.SockaddrLength) >= unsafe.Sizeof(RawSockaddrInet4{}) && addr.Sockaddr.Addr.Family == AF_INET {
    		return (*RawSockaddrInet4)(unsafe.Pointer(addr.Sockaddr)).Addr[:]
    	} else if uintptr(addr.SockaddrLength) >= unsafe.Sizeof(RawSockaddrInet6{}) && addr.Sockaddr.Addr.Family == AF_INET6 {
    		return (*RawSockaddrInet6)(unsafe.Pointer(addr.Sockaddr)).Addr[:]
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    		{"unsafe.Pointer", ValueOf(unsafePtr), unsafePtr},
    		{"function", ValueOf(fn), **(**unsafe.Pointer)(unsafe.Pointer(&fn))},
    		{"slice", ValueOf(slice), unsafe.Pointer(unsafe.SliceData(slice))},
    		{"string", ValueOf(s), unsafe.Pointer(unsafe.StringData(s))},
    	}
    
    	for _, tc := range tests {
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			if got := tc.val.Pointer(); got != uintptr(tc.wantUnsafePointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    ExpressionStmt = Expression .
    </pre>
    
    <p>
    The following built-in functions are not permitted in statement context:
    </p>
    
    <pre>
    append cap complex imag len make new real
    unsafe.Add unsafe.Alignof unsafe.Offsetof unsafe.Sizeof unsafe.Slice
    </pre>
    
    <pre>
    h(x+y)
    f.Close()
    &lt;-ch
    (&lt;-ch)
    len("foo")  // illegal if len is the built-in function
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %unshaped = "tf.Cast"(%arg1) : (tensor<1x2x3xf32>) -> tensor<*xf32>
        // CHECK: <{is_stateless = true}>
        %0 = "tf.IfRegion"(%arg0) <{is_stateless = true}> ({
          // CHECK: "tf.Add"{{.+}}(tensor<1x2x3xf32>, tensor<1x2x3xf32>) -> tensor<1x2x3xf32>
          // CHECK: "tf.Yield"{{.+}}(tensor<1x2x3xf32>) -> ()
          %1 = "tf.Add"(%unshaped, %unshaped) : (tensor<*xf32>,  tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top