Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 177 for _id (0.12 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. config_id */
        String INDEX_FIELD_config_id = "index.field.config_id";
    
        /** The key of the configuration. e.g. expires */
        String INDEX_FIELD_EXPIRES = "index.field.expires";
    
        /** The key of the configuration. e.g. url */
        String INDEX_FIELD_URL = "index.field.url";
    
        /** The key of the configuration. e.g. doc_id */
        String INDEX_FIELD_doc_id = "index.field.doc_id";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

       * {@link java.util.TreeMap} can suppress it with {@code
       * FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5045147">Sun bug 5045147</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getPutNullKeyUnsupportedMethod() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        File defaultUserLocalRepository = new File(userMavenConfigurationHome, "repository");
    
        String DEFAULT_REMOTE_REPO_ID = MavenRepositorySystem.DEFAULT_REMOTE_REPO_ID;
    
        String DEFAULT_REMOTE_REPO_URL = MavenRepositorySystem.DEFAULT_REMOTE_REPO_ID;
    
        Artifact createArtifact(String groupId, String artifactId, String version, String packaging);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryExpiredException.java

    public class DictionaryExpiredException extends RuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        //    public DictionaryExpiredException() {
        //        super("errors.expired_dict_id");
        //    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 885 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsThumbnailQueueCA.java

            setThumbnailId_Terms("thumbnail_id", opLambda, null);
        }
    
        public void setThumbnailId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsThumbnailQueueCA> aggsLambda) {
            setThumbnailId_Terms("thumbnail_id", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsThumbnailQueueCB.java

            return (ThumbnailQueueCB) this;
        }
    
        @Override
        public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) {
            acceptPK((String) primaryKeyMap.get("_id"));
        }
    
        // ===================================================================================
        //                                                                               Build
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

        }
    
        @Test
        void testEmptyConstructor() {
            MavenProject project = new MavenProject();
    
            assertEquals(
                    MavenProject.EMPTY_PROJECT_GROUP_ID + ":" + MavenProject.EMPTY_PROJECT_ARTIFACT_ID + ":jar:"
                            + MavenProject.EMPTY_PROJECT_VERSION,
                    project.getId());
        }
    
        @Test
        void testClone() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/SearchListTests.java

                if (setting.containsKey(idKey)) {
                    requestBody.put(idKey, setting.get(idKey));
                }
    
                final Map<String, Object> doc = new HashMap<>();
                doc.put("doc_id", setting.get("doc_id"));
                doc.put("url", setting.get("url_link"));
                doc.put("title", setting.get("title"));
                doc.put("role", "Rguest");
                doc.put("boost", setting.get("boost"));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

            assertLocalArtifactPresent(l);
        }
    
        public void testReadRepoFromModel() throws Exception {
            Artifact m = createArtifact(TestMavenWorkspaceReader.ARTIFACT_ID, TestMavenWorkspaceReader.VERSION);
            ArtifactMetadataSource source = getContainer().lookup(ArtifactMetadataSource.class, "maven");
            ResolutionGroup group = source.retrieve(m, localRepository(), new ArrayList<>());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

        }
    
        public ArtifactRepository createDefaultRemoteRepository() throws InvalidRepositoryException {
            return new MavenArtifactRepository(
                    DEFAULT_REMOTE_REPO_ID,
                    "file://"
                            + new File(System.getProperty("basedir", "."), "src/test/remote-repo")
                                    .getAbsoluteFile()
                                    .toURI()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
Back to top