- Sort Score
- Num 10 results
- Language All
Results 201 - 210 of 883 for cend (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/ringbuffer/ring_buffer.go
w int // next position to write isFull bool err error block bool mu sync.Mutex wg sync.WaitGroup readCond *sync.Cond // Signaled when data has been read. writeCond *sync.Cond // Signaled when data has been written. } // New returns a new RingBuffer whose buffer has the given size. func New(size int) *RingBuffer { return &RingBuffer{ buf: make([]byte, size),
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/LogNotificationJob.java
import org.codelibs.fess.mylasta.mail.LogNotificationPostcard; import org.codelibs.fess.opensearch.client.SearchEngineClient; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.mail.send.hook.SMailCallbackContext; import org.lastaflute.core.mail.Postbox; import org.opensearch.action.bulk.BulkRequestBuilder; import org.opensearch.action.search.SearchResponse; import org.opensearch.index.query.QueryBuilders;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 9.4K bytes - Click Count (0) -
helm/minio/templates/networkpolicy.yaml
matchLabels: {{ template "minio.name" . }}-client: "true" {{- end }} {{- if .Values.networkPolicy.egress.enabled }} egress: - ports: {{ .Values.networkPolicy.egress.ports | toJson }} {{- with .Values.networkPolicy.egress.to }} to: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} --- kind: NetworkPolicy apiVersion: {{ template "minio.networkPolicy.apiVersion" . }}Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Jun 08 16:14:18 GMT 2025 - 1.9K bytes - Click Count (0) -
docs/fr/docs/how-to/conditional-openapi.md
Cela n'ajoute aucune sécurité supplémentaire à votre API, les *chemins d'accès* resteront disponibles là où ils se trouvent. S'il y a une faille de sécurité dans votre code, elle existera toujours.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
* @return the negotiated capabilities */ public int getNegotiatedCapabilities() { return this.capabilities; } /** * Gets the negotiated send buffer size. * * @return negotiated send buffer size */ public int getNegotiatedSendBufferSize() { return this.snd_buf_size; } /** * Gets the negotiated multiplex count. *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
* * @return write operation count */ public long getRdmaWrites() { return rdmaWrites.get(); } /** * Get total number of RDMA send operations * * @return send operation count */ public long getRdmaSends() { return rdmaSends.get(); } /** * Get total number of RDMA receive operations *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 10.7K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbPipeHandleImplTest.java
when(fileHandle.acquire()).thenReturn(fileHandle); when(fileHandle.getTree()).thenReturn(tree); // Mock response and send behavior Smb2IoctlResponse resp = mock(Smb2IoctlResponse.class); when(resp.getOutputLength()).thenReturn(42); when(tree.send(any(Smb2IoctlRequest.class), any())).thenReturn(resp); byte[] out = new byte[10];
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.7K bytes - Click Count (0) -
src/archive/zip/zip_test.go
_, err := f.Write(chunk[:frag]) if err != nil { t.Fatal("write chunk:", err) } } end := []byte("END\n") _, err = f.Write(end) if err != nil { t.Fatal("write end:", err) } if err := w.Close(); err != nil { t.Fatal(err) } // read back zip file and check that we get to the end of it r, err := NewReader(buf, buf.Size()) if err != nil { t.Fatal("reader:", err) }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu May 23 01:00:11 GMT 2024 - 19.6K bytes - Click Count (0) -
docs/en/docs/tutorial/response-model.md
But if we use the same model for another *path operation*, we could be sending our user's passwords to every client. /// danger Never store the plain password of a user or send it in a response like this, unless you know all the caveats and you know what you are doing. /// ## Add an output model { #add-an-output-model }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 15.5K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/riscv64validation.s
CSRAI $0, X10 // ERROR "immediate cannot be zero" CSRAI $64, X10 // ERROR "must be in range [0, 63]" CAND $1, X10, X11 // ERROR "rd must be the same as rs1" CAND $1, X5 // ERROR "expected integer prime register in rd" CAND $-64, X10 // ERROR "must be in range [-32, 31]" CAND $63, X10 // ERROR "must be in range [-32, 31]" CANDI $1, X10, X11 // ERROR "rd must be the same as rs1"
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Nov 13 12:17:37 GMT 2025 - 42.1K bytes - Click Count (0)