Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 245 for uniqueBy (0.06 sec)

  1. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

         */
        public void enc_ndr_referent(final Object obj, final int type) {
            if (obj == null) {
                enc_ndr_long(0);
                return;
            }
            switch (type) {
            case 1: /* unique */
            case 3: /* ref */
                enc_ndr_long(System.identityHashCode(obj));
                return;
            case 2: /* ptr */
                enc_ndr_long(getDceReferent(obj));
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java

        }
    
        @Test
        void testEncNdrReferent() {
            Object obj1 = new Object();
            Object obj2 = new Object();
    
            // Test unique/ref type (type 1 or 3)
            ndrBuffer.enc_ndr_referent(obj1, 1);
            assertEquals(4, ndrBuffer.getIndex());
            assertEquals(System.identityHashCode(obj1), Encdec.dec_uint32le(buffer, 0));
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                int threadCount = 20;
                ExecutorService executor = Executors.newFixedThreadPool(threadCount);
                CountDownLatch latch = new CountDownLatch(threadCount);
    
                // Each thread uses unique data to sign
                byte[][] results = new byte[threadCount][128];
    
                for (int t = 0; t < threadCount; t++) {
                    final int threadId = t;
                    executor.submit(() -> {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

        /** The list of synonym items loaded from the dictionary file. */
        List<SynonymItem> synonymItemList;
    
        /**
         * Constructs a new synonym file.
         *
         * @param id        The unique identifier for this dictionary file.
         * @param path      The path to the dictionary file.
         * @param timestamp The last modified timestamp of the file.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

        //                                               -------
        /**
         * Shows detailed information for a specific elevate word.
         *
         * @param crudMode CRUD operation mode
         * @param id unique identifier of the elevate word
         * @return HTML response with elevate word details
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse details(final int crudMode, final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         */
        JavaPathType(JavaFileManager.Location location, String option) {
            this.location = location;
            this.option = option;
        }
    
        /**
         * Returns the unique name of this path type.
         *
         * @return the programmatic name of this enumeration value
         */
        @Override
        public String id() {
            return name();
        }
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 15K bytes
    - Viewed (1)
  7. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

             */
            public boolean hasHandleCache() {
                return Smb2LeaseState.hasHandleCaching(leaseState);
            }
    
            /**
             * Gets the unique lease key identifier for this lease entry
             * @return the lease key
             */
            public Smb2LeaseKey getLeaseKey() {
                return leaseKey;
            }
    
            /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/HashBiMap.java

       * equivalently, if this inverse view contains a key that is equal to {@code value}).
       *
       * <p>Due to the property that values in a BiMap are unique, this will tend to execute in
       * faster-than-linear time.
       *
       * @param value the object to search for in the values of this BiMap
       * @return true if a mapping exists from a key to the specified value
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

    ### Other notable improvements
    
      * Job was Beta in 1.1 and is GA in 1.2 .
         * <code>apiVersion: batch/v1 </code>is now available.  You now do not need to specify the <code>.spec.selector</code> field — a [unique selector is automatically generated ](http://kubernetes.io/docs/user-guide/jobs/#pod-selector)for you.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.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
    - 27K bytes
    - Viewed (0)
Back to top