Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1171 - 1180 of 1,456 for created (0.04 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsWebAuthenticationCB.java

                doColumn("_id");
            }
    
            public void columnAuthRealm() {
                doColumn("authRealm");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnHostname() {
                doColumn("hostname");
            }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/eventbus/DispatcherTest.java

                i2, s1, s2, i3, s1, s2)
            .inOrder();
      }
    
      private static Subscriber subscriber(
          EventBus bus, Object target, String methodName, Class<?> eventType) {
        try {
          return Subscriber.create(bus, target, target.getClass().getMethod(methodName, eventType));
        } catch (NoSuchMethodException e) {
          throw new AssertionError(e);
        }
      }
    
      public final class IntegerSubscriber {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 27 15:41:25 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/SimpleAbstractMultisetTest.java

        suite.addTest(
            MultisetTestSuiteBuilder.using(
                    new TestStringMultisetGenerator() {
                      @Override
                      protected Multiset<String> create(String[] elements) {
                        Multiset<String> ms = new NoRemoveMultiset<>();
                        Collections.addAll(ms, elements);
                        return ms;
                      }
                    })
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveTester.java

        expectUnchanged();
      }
    
      @CollectionFeature.Require({SUPPORTS_REMOVE, ALLOWS_NULL_VALUES})
      @CollectionSize.Require(absent = ZERO)
      public void testRemove_nullPresent() {
        collection = getSubjectGenerator().create(createArrayWithNullElement());
    
        int initialSize = collection.size();
        assertTrue("remove(null) should return true", collection.remove(null));
        assertEquals(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 20:00:30 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_config.related_query/related_query.json

    {
        "properties": {
          "term": {
            "type": "keyword"
          },
          "queries": {
            "type": "keyword"
          },
          "virtualHost": {
            "type": "keyword"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
          }
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 414 bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.bad_word/bad_word.json

    {
        "properties": {
          "suggestWord": {
            "type": "keyword"
          },
          "targetRole": {
            "type": "keyword"
          },
          "targetLabel": {
            "type": "keyword"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
          }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 424 bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_config.elevate_word/elevate_word.json

            "type": "keyword"
          },
          "reading": {
            "type": "keyword"
          },
          "permissions": {
            "type": "keyword"
          },
          "boost": {
            "type": "float"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 471 bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess_config.access_token/access_token.json

          },
          "permissions": {
            "type": "keyword"
          },
          "parameter_name" : {
            "type": "keyword"
          },
          "expiredTime": {
            "type": "long"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 529 bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ForwardingSortedSetTest.java

        suite.addTest(
            SortedSetTestSuiteBuilder.using(
                    new TestStringSortedSetGenerator() {
                      @Override
                      protected SortedSet<String> create(String[] elements) {
                        return new StandardImplForwardingSortedSet<>(
                            new SafeTreeSet<String>(asList(elements)));
                      }
    
                      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.util.List;
    
    /**
     * Tester for {@link Equivalence} relationships between groups of objects.
     *
     * <p>To use, create a new {@link EquivalenceTester} and add equivalence groups where each group
     * contains objects that are supposed to be equal to each other. Objects of different groups are
     * expected to be unequal. For example:
     *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top