Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 452 for 2000 (0.01 sec)

  1. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            TestScoreBooster booster2 = new TestScoreBooster(200L);
    
            scoreUpdater.addScoreBooster(booster1);
            scoreUpdater.addScoreBooster(booster2);
    
            String result = scoreUpdater.execute();
            assertTrue(result.contains("TestScoreBooster : 100"));
            assertTrue(result.contains("TestScoreBooster : 200"));
        }
    
        // Test execute with exception in booster
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

          ImmutableDoubleArray.Builder builder = ImmutableDoubleArray.builder(random.nextInt(20));
          AtomicInteger counter = new AtomicInteger(0);
          while (counter.get() < 1000) {
            BuilderOp op = BuilderOp.randomOp();
            op.doIt(builder, counter);
          }
          ImmutableDoubleArray iia = builder.build();
          for (int j = 0; j < iia.length(); j++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java

        public Integer crudMode;
    
        /** Input terms (comma-separated) that will be mapped to the output term */
        @Required
        @Size(max = 1000)
        public String inputs;
    
        /** Output term that input terms will be mapped to */
        @Size(min = 1, max = 1000)
        public String output;
    
        /**
         * Initializes the form with default values for creating a new mapping dictionary entry.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The input terms that should be considered synonymous */
        @Required
        @Size(max = 1000)
        public String inputs;
    
        /** The output synonyms that should be matched for the input terms */
        @Required
        @Size(max = 1000)
        public String outputs;
    
        /**
         * Initializes the form with default values for creating a new synonym entry.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java

        @Size(max = 10000)
        public String queries;
    
        /**
         * The virtual host for which these related queries apply.
         */
        @Size(max = 1000)
        public String virtualHost;
    
        /**
         * The username who created these related queries.
         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when these related queries were created.
         */
        @ValidateTypeFailure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            item1.id = 100L;
            item2.id = 200L;
    
            assertEquals(100L, item1.getId());
            assertEquals(200L, item2.getId());
    
            // Verify they don't affect each other
            item1.id = 300L;
            assertEquals(300L, item1.getId());
            assertEquals(200L, item2.getId());
        }
    
        public void test_constructor() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/EditForm.java

         * This is a required field for identifying which data config to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this data configuration.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this data configuration was last updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/group/EditForm.java

         * This is a required field for identifying which group to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this group.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this group was last updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/pathmap/EditForm.java

         * This is a required field for identifying which path map to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this path mapping configuration.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java

         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this related content configuration.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top