Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2661 - 2670 of 4,618 for alse (0.02 sec)

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

                    cb.query().setDescription_Wildcard(webConfigPager.description);
                } else if (webConfigPager.description.endsWith("*")) {
                    cb.query().setDescription_Prefix(webConfigPager.description.replaceAll("\\*$", StringUtil.EMPTY));
                } else {
                    cb.query().setDescription_MatchPhrase(webConfigPager.description);
                }
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapDifference.java

       * values.
       */
      Map<K, ValueDifference<V>> entriesDiffering();
    
      /**
       * Compares the specified object with this instance for equality. Returns {@code true} if the
       * given object is also a {@code MapDifference} and the values returned by the {@link
       * #entriesOnlyOnLeft()}, {@link #entriesOnlyOnRight()}, {@link #entriesInCommon()} and {@link
       * #entriesDiffering()} of the two instances are equal.
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

         */
        private static boolean objectsEqual(Object o1, Object o2) {
            if (o1 == null && o2 == null) {
                return true;
            }
            if (o1 == null || o2 == null) {
                return false; // as they are not both null
            }
            return o1.equals(o2);
        }
    
        // ----------------------------------------------------------------------------
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/dependencies/sub-dependencies.md

    🏧 😐 🌐❔ 👆 💭 👆 đŸ’Ē 🔗 🤙 🔠 🔁 (🎲 💗 🕰) 🎏 📨 ↩ī¸ ⚙ī¸ "💾" 💲, 👆 đŸ’Ē ⚒ đŸ”ĸ `use_cache=False` 🕐❔ ⚙ī¸ `Depends`:
    
    ```Python hl_lines="1"
    async def needy_dependency(fresh_value: str = Depends(get_value, use_cache=False)):
        return {"fresh_value": fresh_value}
    ```
    
    ## 🌃
    
    ↖ī¸ âšĒī¸âžĄī¸ 🌐 🎀 🔤 ⚙ī¸ đŸ“Ĩ, **🔗 💉** ⚙ī¸ 🙅.
    
    đŸ”ĸ 👈 👀 🎏 *➡ 🛠ī¸ đŸ”ĸ*.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

                                    </la:info>
                                    <la:errors/>
                                </div>
                                <a role="button" data-toggle="collapse" href="#listSearchForm" aria-expanded="false"
                                   aria-controls="listSearchForm"><i class="fas fa-search" aria-hidden="true"></i></a>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java

        assertFalse("addAll(n, nothing) should return false", getList().addAll(0, emptyCollection()));
        expectUnchanged();
      }
    
      @ListFeature.Require(absent = SUPPORTS_ADD_WITH_INDEX)
      public void testAddAllAtIndex_unsupportedNothing() {
        try {
          assertFalse(
              "addAll(n, nothing) should return false or throw",
              getList().addAll(0, emptyCollection()));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 20:00:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dfs/Referral.java

                    }
                    if ( altPathOffset > 0 ) {
                        this.altPath = readString(buffer, start + altPathOffset, len);
                    }
                }
                else {
                    int specialNameOffset = SMBUtil.readInt2(buffer, bufferIndex);
                    bufferIndex += 2;
                    int numExpanded = SMBUtil.readInt2(buffer, bufferIndex);
                    bufferIndex += 2;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java

        SettableFuture<String> f = SettableFuture.create();
        FutureCallback<String> callback =
            new FutureCallback<String>() {
              private final Object monitor = new Object();
              private boolean called = false;
    
              @Override
              public void onSuccess(String result) {
                fail("Was not expecting onSuccess() to be called.");
              }
    
              @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 15:41:36 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/MutableValueGraph.java

    public interface MutableValueGraph<N, V> extends ValueGraph<N, V> {
    
      /**
       * Adds {@code node} if it is not already present.
       *
       * <p><b>Nodes must be unique</b>, just as {@code Map} keys must be. They must also be non-null.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean addNode(N node);
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. compat/maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java

            if (version == null) {
                assertThrows(
                        InvalidArtifactRTException.class,
                        () -> new DefaultArtifact(
                                groupId, artifactId, (VersionRange) null, scope, type, classifier, artifactHandler, false));
            }
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top