Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dataKey (0.46 sec)

  1. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        }
    
        public void test_setEcsEventDataset() {
            activityHelper.setEcsEventDataset("test-dataset");
            activityHelper.useEcsFormat = true;
            activityHelper.login(OptionalThing.empty());
            assertTrue(localLogMsg.get().contains("\"event.dataset\":\"test-dataset\""));
        }
    
        public void test_setEnvMap() {
            Map<String, String> testEnv = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/PairedStats.java

       *
       * <p>This is guaranteed to return zero if the dataset contains a single pair of finite values. It
       * is not guaranteed to return zero when the dataset consists of the same pair of values multiple
       * times, due to numerical errors.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

       *
       * <p>This is guaranteed to return zero if the dataset contains only exactly one finite value. It
       * is not guaranteed to return zero when the dataset consists of the same value multiple times,
       * due to numerical errors. However, it is guaranteed never to return a negative result.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

         */
        public void setEcsServiceName(final String ecsServiceName) {
            this.ecsServiceName = ecsServiceName;
        }
    
        /**
         * Set the ECS event dataset.
         * @param ecsEventDataset The ECS event dataset.
         */
        public void setEcsEventDataset(final String ecsEventDataset) {
            this.ecsEventDataset = ecsEventDataset;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

            Date date = new Date(1609459200000L);
            Supplier<Object> supplier = () -> date;
    
            monitorTarget.append(buf, "dateKey", supplier);
            String result = buf.toString();
            assertTrue(result.startsWith("\"dateKey\":\""));
            // Check that the date was converted to string and properly escaped
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  6. pom.xml

    					<keyring>${gpg.keyring}</keyring>
    					key>${gpg.key}</key>
    					<passphrase>${gpg.passphrase}</passphrase>
    					<signMethod>${deb.sign.method}</signMethod>
    					-->
    					<dataSet>
    						<!-- Add app directory -->
    						<data>
    							<type>directory</type>
    							<src>${project.build.directory}/fess</src>
    							<excludes>**/fess_config.properties,**/fess_env*.properties,**/tika.xml</excludes>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
Back to top