Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 417 for z$ (0.03 sec)

  1. cmd/xl-storage-format-v2-legacy.go

    type xlMetaV2VersionHeaderV2 struct {
    	*xlMetaV2VersionHeader
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *xlMetaV2VersionHeaderV2) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	z.EcN, z.EcN = 0, 0
    	var zb0001 uint32
    	zb0001, bts, err = msgp.ReadArrayHeaderBytes(bts)
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	if zb0001 != 5 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:43:43 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver.go

    		},
    		pods: pods,
    	}, nil
    }
    
    func (z *ztunnelServer) Close() error {
    	return z.listener.Close()
    }
    
    func (z *ztunnelServer) Run(ctx context.Context) {
    	context.AfterFunc(ctx, func() { _ = z.Close() })
    
    	for {
    		log.Debug("accepting conn")
    		conn, err := z.accept()
    		if err != nil {
    			if errors.Is(err, net.ErrClosed) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. docs/pl/docs/features.md

    * Zaprojektowane z myślą o zgodności z powyższymi standardami zamiast dodawania ich obsługi po fakcie.
    * Możliwość automatycznego **generowania kodu klienta** w wielu językach.
    
    ### Automatyczna dokumentacja
    
    Interaktywna dokumentacja i webowe interfejsy do eksploracji API. Z racji tego, że framework bazuje na OpenAPI, istnieje wiele opcji, z czego 2 są domyślnie dołączone.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/math/big/arith_decl.go

    //
    //go:linkname addVV
    //go:noescape
    func addVV(z, x, y []Word) (c Word)
    
    // subVV should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname subVV
    //go:noescape
    func subVV(z, x, y []Word) (c Word)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/math/big/bits_test.go

    func (x Bits) norm() Bits {
    	m := make(map[int]bool)
    	for _, b := range x {
    		for m[b] {
    			m[b] = false
    			b++
    		}
    		m[b] = true
    	}
    	var z Bits
    	for b, set := range m {
    		if set {
    			z = append(z, b)
    		}
    	}
    	slices.Sort([]int(z))
    	return z
    }
    
    func TestNormBits(t *testing.T) {
    	for _, test := range []struct {
    		x, want Bits
    	}{
    		{nil, nil},
    		{Bits{}, Bits{}},
    		{Bits{0}, Bits{0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/math/big/ratmarsh.go

    		return errors.New("Rat.GobDecode: invalid length")
    	}
    	i := j + int(ln)
    	if len(buf) < i {
    		return errors.New("Rat.GobDecode: buffer too small")
    	}
    	z.a.neg = b&1 != 0
    	z.a.abs = z.a.abs.setBytes(buf[j:i])
    	z.b.abs = z.b.abs.setBytes(buf[i:])
    	return nil
    }
    
    // MarshalText implements the [encoding.TextMarshaler] interface.
    func (x *Rat) MarshalText() (text []byte, err error) {
    	if x.IsInt() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_edit.txt

    ! exists go.mod
    
    go mod init x.x/y/z
    stderr 'creating new go.mod: module x.x/y/z'
    cmpenv go.mod $WORK/go.mod.init
    
    ! go mod init
    cmpenv go.mod $WORK/go.mod.init
    
    # go mod edits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_edit.txt

    replace (
    	x.1 v1.3.0 => y.1 v1.4.0
    	x.1 v1.4.0 => ../z
    )
    -- go.work.want_multiuse --
    go 1.18
    
    use (
    	../a
    	./c
    	./n
    	/b
    )
    
    replace (
    	x.1 v1.3.0 => y.1 v1.4.0
    	x.1 v1.4.0 => ../z
    )
    -- go.work.want_multidropuse --
    go 1.18
    
    use (
    	../a
    	./c
    )
    
    replace (
    	x.1 v1.3.0 => y.1 v1.4.0
    	x.1 v1.4.0 => ../z
    )
    -- go.work.want_dropreplace --
    go 1.18
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/net/http/cookie_test.go

    		{"\x00\x7e\x7f\x80", false, "\x7e"},
    		{`withquotes`, true, `"withquotes"`},
    		{`"withquotes"`, true, `"withquotes"`}, // double quotes are not valid octets
    		{"a z", false, `"a z"`},
    		{" z", false, `" z"`},
    		{"a ", false, `"a "`},
    		{"a,z", false, `"a,z"`},
    		{",z", false, `",z"`},
    		{"a,", false, `"a,"`},
    	}
    	for _, tt := range tests {
    		if got := sanitizeCookieValue(tt.in, tt.quoted); got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. docs/pl/docs/index.md

    ---
    
    FastAPI to nowoczesny, wydajny framework webowy do budowania API z użyciem Pythona bazujący na standardowym typowaniu Pythona.
    
    Kluczowe cechy:
    
    * **Wydajność**: FastAPI jest bardzo wydajny, na równi z **NodeJS** oraz **Go** (dzięki Starlette i Pydantic). [Jeden z najszybszych dostępnych frameworków Pythonowych](#wydajnosc).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top