Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for snap (0.17 sec)

  1. src/crypto/x509/platform_test.go

    //
    // On Windows the certificate can also be constrained to only server
    // authentication in the properties pane of the certificate in the
    // "Certificates" snap-in of mmc.exe.
    
    const (
    	rootCertPath = "platform_root_cert.pem"
    	rootKeyPath  = "platform_root_key.pem"
    )
    
    func TestPlatformVerifier(t *testing.T) {
    	if runtime.GOOS != "windows" && runtime.GOOS != "darwin" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/float_test.go

    		const nan = uint32(0x7fbfffff) // sNaN
    		if x := math.Float32bits(math.Float32frombits(nan)); x != nan {
    			t.Errorf("got %#x, want %#x", x, nan)
    		}
    	}
    	{
    		const nan = uint32(0xff800001) // sNaN
    		if x := math.Float32bits(math.Float32frombits(nan)); x != nan {
    			t.Errorf("got %#x, want %#x", x, nan)
    		}
    	}
    	{
    		const nan = uint32(0xffbfffff) // sNaN
    		if x := math.Float32bits(math.Float32frombits(nan)); x != nan {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⪴":                             "\u2ab4",
    	"⪸":                            "\u2ab8",
    	"š":                          "\u0161",
    	"≽":                           "\u227d",
    	"⪰":                             "\u2ab0",
    	"ş":                          "\u015f",
    	"ŝ":                           "\u015d",
    	"⪶":                            "\u2ab6",
    	"⪺":                           "\u2aba",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/predicates.go

    			}
    			smap := makeSubstMap(ytparams, targs)
    
    			var check *Checker   // ok to call subst on a nil *Checker
    			ctxt := NewContext() // need a non-nil Context for the substitution below
    
    			// Constraints must be pair-wise identical, after substitution.
    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/named.go

    	// code.
    	if origSig.RecvTypeParams().Len() == t.inst.targs.Len() {
    		smap := makeSubstMap(origSig.RecvTypeParams().list(), t.inst.targs.list())
    		var ctxt *Context
    		if check != nil {
    			ctxt = check.context()
    		}
    		sig = check.subst(origm.pos, origSig, smap, t, ctxt).(*Signature)
    	}
    
    	if sig == origSig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/instantiate.go

    		return false
    	}
    
    	panic(fmt.Sprintf("%v: %s", pos, msg))
    }
    
    func (check *Checker) verify(pos syntax.Pos, tparams []*TypeParam, targs []Type, ctxt *Context) (int, error) {
    	smap := makeSubstMap(tparams, targs)
    	for i, tpar := range tparams {
    		// Ensure that we have a (possibly implicit) interface as type bound (go.dev/issue/51048).
    		tpar.iface()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/sort.go

    func (x MethodsByName) Len() int           { return len(x) }
    func (x MethodsByName) Swap(i, j int)      { x[i], x[j] = x[j], x[i] }
    func (x MethodsByName) Less(i, j int) bool { return x[i].Sym.Less(x[j].Sym) }
    
    // EmbeddedsByName sorts embedded types by name.
    type EmbeddedsByName []*Field
    
    func (x EmbeddedsByName) Len() int           { return len(x) }
    func (x EmbeddedsByName) Swap(i, j int)      { x[i], x[j] = x[j], x[i] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 27 22:13:38 UTC 2021
    - 765 bytes
    - Viewed (0)
  8. src/container/heap/heap.go

    // Pop is equivalent to [Remove](h, 0).
    func Pop(h Interface) any {
    	n := h.Len() - 1
    	h.Swap(0, n)
    	down(h, 0, n)
    	return h.Pop()
    }
    
    // Remove removes and returns the element at index i from the heap.
    // The complexity is O(log n) where n = h.Len().
    func Remove(h Interface, i int) any {
    	n := h.Len() - 1
    	if n != i {
    		h.Swap(i, n)
    		if !down(h, i, n) {
    			up(h, i)
    		}
    	}
    	return h.Pop()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/inl_test.go

    			"(*Uint32).Swap",
    			"(*Uint64).Add",
    			"(*Uint64).CompareAndSwap",
    			"(*Uint64).Load",
    			"(*Uint64).Store",
    			"(*Uint64).Swap",
    			"(*Uintptr).Add",
    			"(*Uintptr).CompareAndSwap",
    			"(*Uintptr).Load",
    			"(*Uintptr).Store",
    			"(*Uintptr).Swap",
    			"(*Pointer[go.shape.int]).CompareAndSwap",
    			"(*Pointer[go.shape.int]).Load",
    			"(*Pointer[go.shape.int]).Store",
    			"(*Pointer[go.shape.int]).Swap",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    	FADV_NOREUSE  = 0x7
    )
    
    type RawSockaddrNFCLLCP struct {
    	Sa_family        uint16
    	Dev_idx          uint32
    	Target_idx       uint32
    	Nfc_protocol     uint32
    	Dsap             uint8
    	Ssap             uint8
    	Service_name     [63]uint8
    	Service_name_len uint64
    }
    
    type RawSockaddr struct {
    	Family uint16
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top