Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 257 for spreading (0.07 sec)

  1. src/main/resources/fess_label.properties

    labels.jobStatus=Status
    labels.labelTypeIds=Labels
    labels.lang=Language
    labels.outputs=Outputs
    labels.pos=Part-of-speech
    labels.purgeJobLogDay=Delete old job logs
    labels.purgeUserInfoDay=Delete old user logs
    labels.reading=Reading
    labels.roleTypeIds=Role IDs
    labels.scriptData=Script
    labels.scriptResult=Result
    labels.scriptType=Execution Method
    labels.segmentation=Segmentation
    labels.startTime=Start Time
    labels.target=Target
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt

        disconnectBeforeTrailers(Protocol.HTTP_1_1)
      }
    
      @Test
      fun disconnectBeforeTrailersHttp2() {
        disconnectBeforeTrailers(Protocol.HTTP_2)
      }
    
      /** Confirm we can get an [IOException] reading trailers. */
      private fun disconnectBeforeTrailers(protocol: Protocol) {
        enableProtocol(protocol)
    
        server.enqueue(
          MockResponse
            .Builder()
            .trailers(headersOf("t1", "v2"))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 18:57:05 UTC 2025
    - 18K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java

            assertEquals(0xFFFFFFFF, response.getCapabilities());
            assertEquals(0xFFFFFFFF, response.getMaximalAccess());
        }
    
        @Test
        @DisplayName("Should handle buffer too small for reading")
        void testBufferTooSmall() {
            // Given
            byte[] buffer = new byte[15]; // Too small for 16-byte structure
            SMBUtil.writeInt2(16, buffer, 0);
    
            // When & Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

    import java.net.UnknownHostException;
    
    import jcifs.smb1.util.Encdec;
    
    /**
     * This class provides random access to files stored on an SMB/CIFS network resource.
     * It implements the DataInput and DataOutput interfaces for reading and writing primitive
     * Java data types to the file.
     */
    public class SmbRandomAccessFile implements DataOutput, DataInput {
    
        private static final int WRITE_OPTIONS = 0x0842;
    
        private final SmbFile file;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt

         * connection if `streamId` is zero.
         */
        fun windowUpdate(
          streamId: Int,
          windowSizeIncrement: Long,
        )
    
        /**
         * Called when reading a headers or priority frame. This may be used to change the stream's
         * weight from the default (16) to a new value.
         *
         * @param streamId stream which has a priority change.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

          return null // Another edit is in progress.
        }
    
        if (entry != null && entry.lockingSourceCount != 0) {
          return null // We can't write this file because a reader is still reading it.
        }
    
        if (mostRecentTrimFailed || mostRecentRebuildFailed) {
          // The OS has become our enemy! If the trim job failed, it means we are storing more data than
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java

                throw new IOException("Connection not established");
            }
    
            try {
                // For TCP fallback, simulate reading data through the TCP socket
                int bytesToRead = Math.min(length, buffer.remaining());
                ByteBuffer tempBuffer = ByteBuffer.allocate(bytesToRead);
    
                int totalRead = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java

         * The file is created at {@code META-INF/maven/org.apache.maven.api.di.Inject} and contains
         * the fully qualified names of classes with the {@link Named} annotation.
         *
         * @throws IOException if there is an error reading or writing the file
         */
        private void updateFileIfChanged() throws IOException {
            String path = "META-INF/maven/org.apache.maven.api.di.Inject";
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java

        }
    
        // Helper method to read string from buffer
        private String readStringFromBuffer(byte[] buffer, int offset, int length) {
            // Simple ASCII string reading for test purposes
            StringBuilder sb = new StringBuilder();
            for (int i = offset; i < offset + length && buffer[i] != 0; i++) {
                if (buffer[i] != 0) {
                    sb.append((char) buffer[i]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/CompactLinkedHashSet.java

     * {@code java.util.LinkedHashSet}, it offers insertion-order iteration, with identical behavior.
     *
     * <p>This class should not be assumed to be universally superior to {@code
     * java.util.LinkedHashSet}. Generally speaking, this class reduces object allocation and memory
     * consumption at the price of moderately increased constant factors of CPU. Only use this class
     * when there is a specific reason to prioritize memory over CPU.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 14:59:07 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top