Search Options

Results per page
Sort
Preferred Languages
Advance

Results 751 - 760 of 5,356 for stringy (0.1 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

            // ======================
            String BUILD = "build";
            String INITIALIZE = "initialize";
            String VALIDATE = "validate";
            String SOURCES = "sources";
            String RESOURCES = "resources";
            String COMPILE = "compile";
            String READY = "ready";
            String PACKAGE = "package";
            String VERIFY = "verify";
            String UNIT_TEST = "unit-test";
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 24 07:54:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

        }
    
        public static class OpenIdUser implements FessUser {
    
            private static final long serialVersionUID = 1L;
    
            protected final String name;
    
            protected String[] groups;
    
            protected String[] roles;
    
            protected String[] permissions;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        /** configParameter */
        protected String configParameter;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** depth */
        protected Integer depth;
    
        /** description */
        protected String description;
    
        /** excludedDocPaths */
        protected String excludedDocPaths;
    
        /** excludedPaths */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                  protected Set<String> create(String[] elements) {
                    final String[] deduped = dedupe(elements);
                    return new AbstractSet<String>() {
                      @Override
                      public int size() {
                        return deduped.length;
                      }
    
                      @Override
                      public Iterator<String> iterator() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. cmd/metrics-v2_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 5
    	// string "Namespace"
    	o = append(o, 0x85, 0xa9, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65)
    	o = msgp.AppendString(o, string(z.Namespace))
    	// string "Subsystem"
    	o = append(o, 0xa9, 0x53, 0x75, 0x62, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d)
    	o = msgp.AppendString(o, string(z.Subsystem))
    	// string "Name"
    	o = append(o, 0xa4, 0x4e, 0x61, 0x6d, 0x65)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

        /** configParameter */
        protected String configParameter;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** depth */
        protected Integer depth;
    
        /** description */
        protected String description;
    
        /** excludedDocUrls */
        protected String excludedDocUrls;
    
        /** excludedUrls */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java

            final Vector<String> vector = new Vector<String>();
            vector.add("a");
            final EnumerationIterator<String> itr = new EnumerationIterator<String>(vector.elements());
            itr.remove();
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testNext() throws Exception {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

        /** authRealm */
        protected String authRealm;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** hostname */
        protected String hostname;
    
        /** parameters */
        protected String parameters;
    
        /** password */
        protected String password;
    
        /** port */
        protected Integer port;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/it/admin/SearchListTests.java

        private static final String NAME_PREFIX = "searchListTest_";
        private static final String API_PATH = "/api/admin/searchlist";
        private static final String LIST_ENDPOINT_SUFFIX = "docs";
        private static final String ITEM_ENDPOINT_SUFFIX = "doc";
    
        private static final String KEY_PROPERTY = "title";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

      public void testStaticMethod_returning() throws Exception {
        Invokable<?, Iterable<String>> delegate =
            Prepender.method("prepend", String.class, Iterable.class)
                .returning(new TypeToken<Iterable<String>>() {});
        assertEquals(new TypeToken<Iterable<String>>() {}, delegate.getReturnType());
        Iterable<String> result = delegate.invoke(null, "a", ImmutableList.of("b", "c"));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top