Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 180 for sido (0.02 sec)

  1. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                final DataStoreParams initParamMap = new DataStoreParams();
                final String sid = ComponentUtil.getCrawlingConfigHelper().store(sessionId, dataConfig);
                sessionIdList.add(sid);
    
                initParamMap.put(Constants.SESSION_ID, sessionId);
                initParamMap.put(Constants.CRAWLING_INFO_ID, sid);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java

                setField(resp, jcifs.internal.smb1.trans.SmbComTransactionResponse.class, "results", res);
                setField(resp, Trans2FindFirst2Response.class, "sid", 42);
                setField(resp, Trans2FindFirst2Response.class, "resumeKey", 100);
                setField(resp, Trans2FindFirst2Response.class, "lastName", "b");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                c = "Trans2FindFirst2Response[";
            } else {
                c = "Trans2FindNext2Response[";
            }
            return (c + super.toString() + ",sid=" + sid + ",searchCount=" + numEntries + ",isEndOfSearch=" + isEndOfSearch + ",eaErrorOffset="
                    + eaErrorOffset + ",lastNameOffset=" + lastNameOffset + ",lastName=" + lastName + "]");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/JdkBackedImmutableSet.java

    import java.util.Set;
    import org.jspecify.annotations.Nullable;
    
    /**
     * ImmutableSet implementation backed by a JDK HashSet, used to defend against apparent hash
     * flooding. This implementation is never used on the GWT client side.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible
    final class JdkBackedImmutableSet<E> extends IndexedImmutableSet<E> {
      private final Set<?> delegate;
      private final ImmutableList<E> delegateList;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 01 22:23:20 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

          label: 3. What would that same code look like if we added your feature?
        validations:
          required: true
    
      - type: markdown
        attributes:
          value: >
            Comparing two approaches to a use case side by side can make it easier to examine the
            differences between them.
    
    
            Additionally, it's very useful to us if you can provide a "straw API" &mdash; what the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/util/SecureKeyManagerTest.java

                            String sid = "thread-" + threadId + "-key-" + i;
                            byte[] key = keyManager.generateRandomKey(16);
    
                            // Store key
                            keyManager.storeSessionKey(sid, key, "AES");
    
                            // Retrieve and verify
                            byte[] retrieved = keyManager.getRawKey(sid);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/rpc.java

            public sid_t() {
                // Default constructor
            }
    
            /**
             * The revision level of the SID structure.
             */
            public byte revision;
            /**
             * The number of sub-authorities in this SID.
             */
            public byte sub_authority_count;
            /**
             * The identifier authority value (6 bytes).
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Predicate.java

       * class documentation above). This method is <i>generally expected</i>, but not absolutely
       * required, to have the following properties:
       *
       * <ul>
       *   <li>Its execution does not cause any observable side effects.
       *   <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal
       *       Objects.equal}{@code (a, b)} implies that {@code predicate.apply(a) ==
       *       predicate.apply(b))}.
       * </ul>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 18 15:22:00 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                // Then: Should have correct values
                assertEquals(0x21, message.getOpnum());
                assertEquals(mockPolicyHandle, message.alias_handle);
                assertEquals(mockLsarSidArray, message.sids);
            }
    
            @Test
            @DisplayName("Should encode input correctly")
            void testEncodeIn() throws NdrException {
                // Given: Get members message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/PacConstants.java

         */
        int DEVICE_INFO_TYPE = 0xE;
        /**
         * Buffer type for device claims information.
         */
        int DEVICE_CLAIMS_TYPE = 0xF;
    
        /**
         * Flag for extra SIDs in logon information.
         */
        int LOGON_EXTRA_SIDS = 0x20;
        /**
         * Flag for resource groups in logon information.
         */
        int LOGON_RESOURCE_GROUPS = 0x200;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top