Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 357 for folders (0.04 seconds)

  1. src/main/java/org/codelibs/fess/query/QueryProcessor.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Query processor component that handles query filters and commands.
     * This class provides a pipeline for processing Lucene queries by applying
     * a chain of filters and executing registered query commands.
     *
     * <p>The processor maintains a map of query commands indexed by query class names
     * and a list of filters that are applied in order during query processing.</p>
     */
    public class QueryProcessor {
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb1/smb1/ACE.java

         * directories such as 'This folder, subfolder and files'. For
         * files the text is always 'This object only'.
         * @return the text describing what this ACE applies to
         */
        public String getApplyToText() {
            switch (flags & (FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT | FLAGS_INHERIT_ONLY)) {
            case 0x00:
                return "This folder only";
            case 0x03:
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java

        /**
         * Creates a new filter that combines the specified filters.
         *
         * @param filters The filters to combine, may be {@code null}.
         */
        public CumulativeScopeArtifactFilter(CumulativeScopeArtifactFilter... filters) {
            this.scopes = new HashSet<>();
    
            if (filters != null) {
                for (CumulativeScopeArtifactFilter filter : filters) {
                    addScopes(filter.getScopes());
                }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 08:42:00 GMT 2025
    - 3K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 5;
      }
    
      public void testMutableValues() {
        IntHolder holderA = new IntHolder(1);
        IntHolder holderB = new IntHolder(2);
        Map<String, IntHolder> map = ImmutableMap.of("a", holderA, "b", holderB);
        holderA.value = 3;
        assertTrue(map.entrySet().contains(immutableEntry("a", new IntHolder(3))));
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 16:03:47 GMT 2025
    - 36.7K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.18.md

    * kubeadm: reset raises warnings if it cannot delete folders ([#85265](https://github.com/kubernetes/kubernetes/pull/85265), [@SataQiu](https://github.com/SataQiu))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Wed Jun 16 17:18:28 GMT 2021
    - 373.2K bytes
    - Click Count (0)
  6. fess-crawler/src/test/resources/extractor/tar/test.tar

    data/folder/file.html テスト data/file.txt テキスト...
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Oct 11 02:16:55 GMT 2015
    - 10K bytes
    - Click Count (0)
  7. fess-crawler/src/test/resources/extractor/gz/test.tar.gz

    test.tar data/folder/file.html テスト data/file.txt テキスト...
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Oct 11 02:16:55 GMT 2015
    - 351 bytes
    - Click Count (0)
  8. impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                        };
                        filters.add(new PredicateVersionFilter(predicate));
                    } else {
                        throw new IllegalArgumentException("Unsupported filter expression: " + expression);
                    }
                }
            }
            if (filters.isEmpty()) {
                return null;
            } else if (filters.size() == 1) {
                return filters.get(0);
            } else {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jul 17 05:56:35 GMT 2025
    - 25.8K bytes
    - Click Count (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

     */
    
    package gradlebuild.binarycompatibility
    
    import gradlebuild.binarycompatibility.filters.AnonymousClassesFilter
    import gradlebuild.binarycompatibility.filters.BridgeForBytecodeUpgradeAdapterClassFilter
    import gradlebuild.binarycompatibility.filters.KotlinInternalFilter
    import gradlebuild.binarycompatibility.filters.KotlinInvokeDefaultBridgeFilter
    import gradlebuild.binarycompatibility.rules.AcceptedRegressionsRulePostProcess
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  10. CONTRIBUTING.md

    ### How does ``MinIO`` manage dependencies?
    
    ``MinIO`` uses `go mod` to manage its dependencies.
    
    - Run `go get foo/bar` in the source folder to add the dependency to `go.mod` file.
    
    To remove a dependency
    
    - Edit your code and remove the import reference.
    - Run `go mod tidy` in the source folder to remove dependency from `go.mod` file.
    
    ### What are the coding guidelines for MinIO?
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Aug 05 18:35:53 GMT 2024
    - 2.9K bytes
    - Click Count (0)
Back to Top