- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 104 for cap (0.01 sec)
-
docs/vi/docs/deployment/cloud.md
# Triển khai FastAPI trên các Dịch vụ Cloud Bạn có thể sử dụng **bất kỳ nhà cung cấp dịch vụ cloud** nào để triển khai ứng dụng FastAPI của mình. Trong hầu hết các trường hợp, các nhà cung cấp dịch vụ cloud lớn đều có hướng dẫn triển khai FastAPI với họ. ## Nhà cung cấp dịch vụ Cloud - Nhà tài trợ
Registered: 2025-05-25 07:19 - Last Modified: 2025-03-07 03:24 - 1.7K bytes - Viewed (0) -
docs/vi/docs/environment-variables.md
### Cài đặt Python và cập nhật biến môi trường `PATH` Khi bạn cài đặt Python, bạn có thể được hỏi nếu bạn muốn cập nhật biến môi trường `PATH`. //// tab | Linux, macOS Giả sử bạn cài đặt Python vào thư mục `/opt/custompython/bin`. Nếu bạn chọn cập nhật biến môi trường `PATH`, thì cài đặt sẽ thêm `/opt/custompython/bin` vào biến môi trường `PATH`.
Registered: 2025-05-25 07:19 - Last Modified: 2025-02-07 22:17 - 9.8K bytes - Viewed (0) -
internal/grid/grid.go
var PutByteBuffer = func(b []byte) { if cap(b) >= biggerBufMin && cap(b) < biggerBufMax { internal32KByteBuffer.Put(&b) return } if cap(b) >= minBufferSize && cap(b) < biggerBufMin { internalByteBuffer.Put(&b) return } } // readAllInto reads from r and appends to b until an error or EOF and returns the data it read.
Registered: 2025-05-25 19:28 - Last Modified: 2025-03-30 00:56 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
/** * @author mbechler * */ public interface SmbTransportInternal extends SmbTransport { /** * @param cap * @return whether the transport has the given capability * @throws SmbException */ boolean hasCapability ( int cap ) throws SmbException; /** * @return whether the transport has been disconnected */ boolean isDisconnected ();
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 3K bytes - Viewed (0) -
internal/s3select/jstream/scratch.go
func (s *scratch) grow() { ndata := make([]byte, cap(s.data)*2) copy(ndata, s.data) s.data = ndata } // append single byte to scratch buffer func (s *scratch) add(c byte) { if s.fill+1 >= cap(s.data) { s.grow() } s.data[s.fill] = c s.fill++ } // append encoded rune to scratch buffer func (s *scratch) addRune(r rune) int { if s.fill+utf8.UTFMax >= cap(s.data) { s.grow() }
Registered: 2025-05-25 19:28 - Last Modified: 2024-09-23 19:35 - 758 bytes - Viewed (0) -
src/arena/arena_test.go
defer a.Free() tt := arena.New[T1](a) tt.n = 1 ts := arena.MakeSlice[T1](a, 99, 100) if len(ts) != 99 { t.Errorf("Slice() len = %d, want 99", len(ts)) } if cap(ts) != 100 { t.Errorf("Slice() cap = %d, want 100", cap(ts)) } ts[1].n = 42 } func TestSmokeLarge(t *testing.T) { a := arena.NewArena() defer a.Free() for i := 0; i < 10*64; i++ { _ = arena.New[T2](a) }
Registered: 2025-05-27 11:13 - Last Modified: 2022-10-12 20:23 - 742 bytes - Viewed (0) -
internal/bpool/bpool.go
w: width, wcap: capwidth, } } // Populate - populates and pre-warms the byte pool, this function is non-blocking. func (bp *BytePoolCap) Populate() { for _, buf := range reedsolomon.AllocAligned(cap(bp.c), bp.wcap) { bp.Put(buf[:bp.w]) } } // Get gets a []byte from the BytePool, or creates a new one if none are // available in the pool. func (bp *BytePoolCap) Get() (b []byte) { if bp == nil {
Registered: 2025-05-25 19:28 - Last Modified: 2024-08-29 01:40 - 3K bytes - Viewed (0) -
internal/bpool/bpool_test.go
} // Check with width cap if bp.WidthCap() != capWidth { t.Fatalf("bytepool capWidth invalid: got %v want %v", bp.WidthCap(), capWidth) } // Check that retrieved buffer are of the expected width b := bp.Get() if len(b) != width { t.Fatalf("bytepool length invalid: got %v want %v", len(b), width) } if cap(b) != capWidth { t.Fatalf("bytepool cap invalid: got %v want %v", cap(b), capWidth) }
Registered: 2025-05-25 19:28 - Last Modified: 2024-08-29 01:40 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiationResponse.java
/** * @return whether signing has been negotiated */ boolean isSigningNegotiated (); /** * @param cap * @return whether capability is negotiated */ boolean haveCapabilitiy ( int cap ); /** * @return the send buffer size */ int getSendBufferSize (); /** * @return the receive buffer size */
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 2.6K bytes - Viewed (0) -
docs/vi/docs/deployment/index.md
Đối với một **API web**, điều này có nghĩa là đặt nó trong một **máy chủ từ xa**, với một **chương trình máy chủ** cung cấp hiệu suất tốt, ổn định, v.v., để người dùng của bạn có thể truy cập ứng dụng của bạn một cách hiệu quả và không bị gián đoạn hoặc gặp vấn đề.
Registered: 2025-05-25 07:19 - Last Modified: 2025-02-28 14:14 - 1.6K bytes - Viewed (0)