Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for DeVault (0.04 sec)

  1. .github/workflows/scorecard.yml

    # by a third-party and are governed by separate terms of service, privacy
    # policy, and support documentation.
    
    name: Scorecard supply-chain security
    on:
      # For Branch-Protection check. Only the default branch is supported. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
      branch_protection_rule:
      # To guarantee Maintained check is occasionally updated. See
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. android/pom.xml

                <fork>true</fork>
              </configuration>
              <executions>
                <execution>
                  <id>default-compile</id>
                  <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <excludes>
                      <exclude>module-info.java</exclude>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  3. pom.xml

                <fork>true</fork>
              </configuration>
              <executions>
                <execution>
                  <id>default-compile</id>
                  <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <excludes>
                      <exclude>module-info.java</exclude>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

        }
    
        public void test_default_constructor_is_public() throws Exception {
            assertTrue("Default constructor should be public",
                    java.lang.reflect.Modifier.isPublic(SystemMonitorTarget.class.getConstructor().getModifiers()));
        }
    
        public void test_expired_method_is_public() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. .github/workflows/ci.yml

              access_token: ${{ github.token }}
          - name: 'Check out repository'
            uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
          # When we specify multiple JDKs, the final one becomes the default, which is used to execute Maven itself.
          # Our Maven configuration then specifies different JDKs to use for some of the steps:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

     * Provides document indexing, searching, and administrative operations.
     */
    public class SearchEngineClient implements Client {
    
        /**
         * Default constructor.
         */
        public SearchEngineClient() {
            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(SearchEngineClient.class);
    
        private static final String DOC_INDEX = "fess";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  7. README.md

    Boolean flag = BooleanConversionUtil.toBoolean("true");        // Returns true
    Date date = DateConversionUtil.toDate("2023-12-25", "yyyy-MM-dd");
    
    // Primitive conversions with default values
    int primitiveInt = IntegerConversionUtil.toPrimitiveInt(value, "0");  // Default to 0 if null
    ```
    
    ### Collection Utilities with Java 21 Support
    ```java
    import org.codelibs.core.collection.CollectionsUtil;
    import java.util.SequencedCollection;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  8. pom.xml

    							</mapper>
    						</data>
    						<!-- Add environment vars file -->
    						<data>
    							<type>file</type>
    							<src>${project.build.directory}/generated-packaging/deb/env/fess</src>
    							<dst>/etc/default/fess</dst>
    							<mapper>
    								<type>perm</type>
    								<user>root</user>
    								<group>root</group>
    							</mapper>
    						</data>
    						<!-- Add init.d files -->
    						<data>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                }
            }
            return getDefaultHelpLink(url);
        }
    
        /**
         * Gets the default help link for a given URL.
         *
         * @param url The URL.
         * @return The default help link.
         */
        protected String getDefaultHelpLink(final String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/BloomFilter.java

          throw new IllegalArgumentException("Could not create BloomFilter of " + numBits + " bits", e);
        }
      }
    
      /**
       * Creates a {@link BloomFilter} with the expected number of insertions and a default expected
       * false positive probability of 3%.
       *
       * <p>Note that overflowing a {@code BloomFilter} with significantly more elements than specified,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top