Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 326 for positive (0.04 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         * @param dstIndex the starting position in the buffer
         * @return number of bytes written
         */
        protected abstract int writeBytesWireFormat(byte[] dst, int dstIndex);
    
        /**
         * Reads the message body from the wire format.
         *
         * @param buffer the buffer to read from
         * @param bufferIndex the starting position in the buffer
         * @return number of bytes read
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

        }
    
        /**
         * Returns the current position of the file pointer.
         *
         * @return the current file pointer position
         * @throws SmbException if an I/O error occurs
         */
        public long getFilePointer() throws SmbException {
            return fp;
        }
    
        /**
         * Sets the file pointer to the specified position.
         *
         * @param pos the new file pointer position
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/Trans2SetFileInformationTest.java

        @Test
        void testWriteDataWireFormat() {
            // Given
            // writeInt8 writes 8 bytes but needs to access dst[dstIndex+7]
            // Total bytes written: 8+8+8+8+2+6=40
            // But writeInt8 at position 34 needs to access position 34+7=41
            // So we need at least 42 bytes in the array
            byte[] dst = new byte[42];
    
            // When
            int result = trans2SetFileInformation.writeDataWireFormat(dst, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtCancelTest.java

                assertEquals(0, writeParams.invoke(cancel, buffer, position));
    
                // Test write bytes
                Method writeBytes = SmbComNtCancel.class.getDeclaredMethod("writeBytesWireFormat", byte[].class, int.class);
                writeBytes.setAccessible(true);
                assertEquals(0, writeBytes.invoke(cancel, buffer, position));
    
                // Test read parameter words
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

          }
        }
    
        // In theory, wildcard rules are not restricted to having the wildcard in the leftmost position.
        // In practice, wildcards are always in the leftmost position. For now, this implementation
        // cheats and does not attempt every possible permutation. Instead, it only considers wildcards
        // in the leftmost position. We assert this fact when we generate the public suffix file. If
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 07:33:49 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    .daterangepicker {
      position: absolute;
      color: inherit;
      background-color: #fff;
      border-radius: 4px;
      border: 1px solid #ddd;
      width: 278px;
      max-width: none;
      padding: 0;
      margin-top: 7px;
      top: 100px;
      left: 20px;
      z-index: 3001;
      display: none;
      font-family: arial;
      font-size: 15px;
      line-height: 1em;
    }
    
    .daterangepicker:before, .daterangepicker:after {
      position: absolute;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         * This is required for tracking and analytics purposes.
         */
        @Required
        public String queryId;
    
        /**
         * Order or ranking position of the document in search results.
         * This optional field helps track which result position was clicked.
         */
        public Integer order;
    
        // for error page
    
        /**
         * Query string parameter for error page fallback.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java

            byte[] fileNameBytes1 = fileName1.getBytes("UTF-16LE");
            buffer.putInt(fileNameBytes1.length);
            buffer.put(fileNameBytes1);
    
            // Align to secondOffset
            buffer.position(secondOffset);
    
            // Second notification with zero nextEntryOffset (last entry)
            buffer.putInt(0); // nextEntryOffset = 0 (last entry)
            buffer.putInt(FileNotifyInformation.FILE_ACTION_REMOVED);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/popper.min.js.map

    getBoundingClientRect(offsetParent);\n\n  // Styles\n  const styles = {\n    position: popper.position,\n  };\n\n  const offsets = getRoundedOffsets(\n    data,\n    window.devicePixelRatio < 2 || !isFirefox\n  );\n\n  const sideA = x === 'bottom' ? 'top' : 'bottom';\n  const sideB = y === 'right' ? 'left' : 'right';\n\n  // if gpuAcceleration is set to `true` and transform is supported,\n  //  we use `translate3d` to apply the position to the popper we\n  // automatically use the supported prefixed version...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 120.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/MapRetrievalCache.java

      private void addToCache(K key, V value) {
        addToCache(new CacheEntry<K, V>(key, value));
      }
    
      private void addToCache(CacheEntry<K, V> entry) {
        // Slide new entry into first cache position. Drop previous entry in second cache position.
        cacheEntry2 = cacheEntry1;
        cacheEntry1 = entry;
      }
    
      private static final class CacheEntry<K, V> {
        final K key;
        final V value;
    
        CacheEntry(K key, V value) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top