Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 332 for back (0.11 sec)

  1. guava/src/com/google/common/util/concurrent/NullnessCasts.java

       * ParametricNullness parametric nullness}. Sometimes, code may receive a null {@code T} but store
       * a "null sentinel" to take its place. When the time comes to convert it back to a {@code T} to
       * return to a caller, the code needs to a way to return {@code null} from a method that returns
       * "plain {@code T}." This API provides that.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 20:49:47 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                <div class="card-footer">
                                    <c:if test="${crudMode == 4}">
                                        <button type="submit" class="btn btn-default" name="back"
                                                value="<la:message key="labels.crawling_info_button_back" />">
                                            <em class="fa fa-arrow-circle-left">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  3. docs/smb3-features/01-smb3-lease-design.md

                breakNotif.getNewLeaseState()
            );
            
            // Send acknowledgment
            Smb2LeaseBreakAcknowledgment ack = new Smb2LeaseBreakAcknowledgment(
                breakNotif.getLeaseKey(),
                breakNotif.getNewLeaseState()
            );
            
            sendAsync(ack);  // Send acknowledgment asynchronously
        }
        // ... handle other message types ...
    }
    ```
    
    ## 7. Configuration
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            addCreateContext(leaseContext);
            setRequestedOplockLevel(SMB2_OPLOCK_LEVEL_LEASE);
        }
    
        /**
         * Remove lease contexts and fall back to oplock
         * @param oplockLevel the oplock level to fall back to
         */
        public void fallbackToOplock(byte oplockLevel) {
            // Remove any lease contexts
            if (this.createContexts != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

         *
         * @param form the search form containing current state
         * @return HTML response for the search log list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse back(final SearchForm form) {
            saveToken();
            return asHtml(path_AdminSearchlog_AdminSearchlogJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/dcerpc/ndr/NdrShortTest.java

            int bytesUsed = buf.getIndex();
            // Should be 2 bytes for the short value (alignment may add padding)
            assertTrue(bytesUsed >= 2, "Should use at least 2 bytes for short");
    
            // Reset index to read back
            buf.reset();
            NdrShort decoded = new NdrShort(0); // placeholder value
            decoded.decode(buf);
            assertEquals(expected, decoded.value, "decoded value should match original after masking");
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  7. guava/pom.xml

                <offlineLink>
                  <url>https://javadoc.io/doc/com.google.j2objc/j2objc-annotations/latest/</url>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jun 06 21:05:32 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/AbstractStreamingHasher.java

        // Now process directly from the rest of the input buffer
        while (readBuffer.remaining() >= chunkSize) {
          process(readBuffer);
        }
    
        // Finally stick the remainder back in our usual buffer
        buffer.put(readBuffer);
        return this;
      }
    
      /*
       * Note: hashString(CharSequence, Charset) is intentionally not overridden.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/BufferCacheSecurityTest.java

                assertEquals(SmbComTransaction.TRANSACTION_BUF_SIZE, buffer.length, "Buffer should have correct size");
                buffers.add(buffer);
            }
    
            // When - Release all buffers back
            for (byte[] buffer : buffers) {
                BufferCache.releaseBuffer(buffer);
            }
    
            // Then - Should be able to get buffers again
            byte[] newBuffer = BufferCache.getBuffer();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSet.java

       * expectedCapacity)) rather than O(calls to add).
       *
       * <p>This implementation attempts to detect hash flooding, and if it's identified, falls back to
       * JdkBackedSetBuilderImpl.
       */
      private static final class RegularSetBuilderImpl<E> extends SetBuilderImpl<E> {
        // null until at least two elements are present
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
Back to top