Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 230 for uniqueBy (0.18 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java

            // For direct ByteBuffers, this could be obtained through unsafe operations
            // or DiSNI-specific methods
    
            if (buffer.isDirect()) {
                // Assign a unique address to each buffer instance
                return bufferAddresses.computeIfAbsent(buffer, b -> addressCounter.getAndIncrement());
            } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/ResourceManager.java

                    sb.append("\tat ").append(holder.allocationStackTrace[i]).append("\n");
                }
                log.error(sb.toString());
            }
        }
    
        /**
         * Generate a unique resource ID
         */
        private String generateResourceId(AutoCloseable resource) {
            return String.format("%s-%d-%d", resource.getClass().getSimpleName(), System.identityHashCode(resource),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            assertEquals(hash1, hash2);
        }
    
        public void test_setters() {
            PrunedTag tag = new PrunedTag("div");
    
            // Test setId
            tag.setId("unique-id");
            assertTrue(tag.toString().contains("id=unique-id"));
    
            // Test setCss
            tag.setCss("my-class");
            assertTrue(tag.toString().contains("css=my-class"));
    
            // Test setAttr
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/QueryHelper.java

         */
        public void setDefaultGeoInfo(final GeoInfo defaultGeoInfo) {
            this.defaultGeoInfo = defaultGeoInfo;
        }
    
        /**
         * Generates a unique identifier string by creating a UUID and removing hyphens.
         *
         * @return a unique identifier string
         */
        public String generateId() {
            return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordDbm.java

            return ls;
        }
    
        // ===================================================================================
        //                                                                         Unique Info
        //                                                                         ===========
        @Override
        public boolean hasPrimaryKey() {
            return false;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/ClickLogDbm.java

            return ls;
        }
    
        // ===================================================================================
        //                                                                         Unique Info
        //                                                                         ===========
        @Override
        public boolean hasPrimaryKey() {
            return false;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java

                assertEquals(16, derivedKey.length, "Should always produce 16-byte key regardless of input size");
            }
        }
    
        @Test
        @DisplayName("Should derive unique keys for different session keys")
        void testDeriveKeys_UniqueSessionKeys() {
            // Given
            byte[] sessionKey1 = new byte[16];
            byte[] sessionKey2 = new byte[16];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/RelatedContentDbm.java

            return ls;
        }
    
        // ===================================================================================
        //                                                                         Unique Info
        //                                                                         ===========
        @Override
        public boolean hasPrimaryKey() {
            return false;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

                throw new DictionaryException("Failed to access dictionaries", e);
            }
        }
    
        /**
         * Retrieves a specific dictionary file by its ID.
         *
         * @param id the unique identifier of the dictionary file to retrieve
         * @return an OptionalEntity containing the dictionary file if found, empty otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

        }
    
        /**
         * Retrieves a specific stemmer override item by dictionary ID and item ID.
         *
         * @param dictId The ID of the stemmer override dictionary
         * @param id The unique ID of the stemmer override item to retrieve
         * @return An OptionalEntity containing the stemmer override item if found, empty otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top