Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for newList (0.62 sec)

  1. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                            mapping.setElevateWordId(elevateWordId);
                            mapping.setLabelTypeId(id);
                            newList.add(mapping);
                        }
                    }
                    list.removeAll(matchedList);
                    elevateWordToLabelBhv.batchInsert(newList, op -> {
                        op.setRefreshPolicy(Constants.TRUE);
                    });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

          }
        }
      }
    
      @AndroidIncompatible // sun.security
      public void testNoProviders() {
        ProviderList providers = Providers.getProviderList();
        Providers.setProviderList(ProviderList.newList());
        try {
          Hashing.hmacMd5(MD5_KEY);
          fail("expected ISE");
        } catch (IllegalStateException expected) {
        } finally {
          Providers.setProviderList(providers);
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Dec 27 16:19:35 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertSame(keyTwo, newFirst.getKey());
        assertSame(valueTwo, newFirst.getValueReference().get());
        assertEquals(hashTwo, newFirst.getHash());
        newFirst = newFirst.getNext();
        assertSame(keyThree, newFirst.getKey());
        assertSame(valueThree, newFirst.getValueReference().get());
        assertEquals(hashThree, newFirst.getHash());
        assertNull(newFirst.getNext());
      }
    
      public void testExpand_cleanup() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        assertSame(keyTwo, newFirst.getKey());
        assertSame(valueTwo, newFirst.getValue());
        assertEquals(hashTwo, newFirst.getHash());
        newFirst = newFirst.getNext();
        assertSame(keyThree, newFirst.getKey());
        assertSame(valueThree, newFirst.getValue());
        assertEquals(hashThree, newFirst.getHash());
        assertNull(newFirst.getNext());
      }
    
      @SuppressWarnings("GuardedBy")
      public void testExpand_cleanup() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        assertSame(keyTwo, newFirst.getKey());
        assertSame(valueTwo, newFirst.getValue());
        assertEquals(hashTwo, newFirst.getHash());
        newFirst = newFirst.getNext();
        assertSame(keyThree, newFirst.getKey());
        assertSame(valueThree, newFirst.getValue());
        assertEquals(hashThree, newFirst.getHash());
        assertNull(newFirst.getNext());
      }
    
      @SuppressWarnings("GuardedBy")
      public void testExpand_cleanup() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          int newCount = count;
          E newFirst = entry.getNext();
          for (E e = first; e != entry; e = e.getNext()) {
            E next = copyEntry(e, newFirst);
            if (next != null) {
              newFirst = next;
            } else {
              newCount--;
            }
          }
          this.count = newCount;
          return newFirst;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.6.md

    * StatefulSet will now fill the `hostname` and `subdomain` fields if they're empty on existing Pods it owns. This allows...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    - When scaling a Deployment during a rollout, the ReplicaSets of all Deployments are now scaled proportionally based on the number of replicas they each have instead of only scaling the newest ReplicaSet.
    
    ### kubectl rolling-update: < v1.4.0 client vs >=v1.4.0 cluster
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

      - [beta] Deployments that cannot make progress in rolling out the newest version will now indicate via the API they are blocked ([docs](http://kubernetes.io/docs/user-guide/deployments/#failed-deployment)) ([kubernetes/features#122](https://github.com/kubernetes/enhancements/issues/122))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * Use arm32v7|arm64v8 images instead of the deprecated armhf|aarch64 image organizations ([#50602](https://github.com/kubernetes/kubernetes/pull/50602), [@dixudx](https://github.com/dixudx))
    * audit newest impersonated user info in the ResponseStarted, ResponseComplete audit stage ([#48184](https://github.com/kubernetes/kubernetes/pull/48184), [@CaoShuFeng](https://github.com/CaoShuFeng))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top