Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for allow (0.01 sec)

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

            assertEquals("1guest", permissionHelper.encode("(allow){user}guest"));
            assertEquals("Rguest", permissionHelper.encode("(allow){role}guest"));
            assertEquals("2guest", permissionHelper.encode("(allow){group}guest"));
            assertEquals("1guest", permissionHelper.encode("(allow){USER}guest"));
            assertEquals("Rguest", permissionHelper.encode("(allow){ROLE}guest"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

            // Check all CORS headers are present
            assertNotNull("Allow-Origin header should be set", responseHeaders.get("Access-Control-Allow-Origin"));
            assertNotNull("Allow-Methods header should be set", responseHeaders.get("Access-Control-Allow-Methods"));
            assertNotNull("Allow-Headers header should be set", responseHeaders.get("Access-Control-Allow-Headers"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Access-Control-Allow-Headers} header field name. */
      public static final String ACCESS_CONTROL_ALLOW_HEADERS = "Access-Control-Allow-Headers";
    
      /** The HTTP {@code Access-Control-Allow-Methods} header field name. */
      public static final String ACCESS_CONTROL_ALLOW_METHODS = "Access-Control-Allow-Methods";
    
      /** The HTTP {@code Access-Control-Allow-Origin} header field name. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/Network.java

      /**
       * Returns true if this network allows parallel edges. Attempting to add a parallel edge to a
       * network that does not allow them will throw an {@link IllegalArgumentException}.
       */
      boolean allowsParallelEdges();
    
      /**
       * Returns true if this network allows self-loops (edges that connect a node to itself).
       * Attempting to add a self-loop to a network that does not allow them will throw an {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:03:02 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

        protected String groupPrefix = "{group}";
    
        /** Prefix used to identify user-based permissions */
        protected String userPrefix = "{user}";
    
        /** Prefix used to identify allow permissions */
        protected String allowPrefix = "(allow)";
    
        /** Prefix used to identify deny permissions */
        protected String denyPrefix = "(deny)";
    
        /** System helper for user/group/role search operations */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

         */
        public void setAnalyzer(final Analyzer analyzer) {
            this.analyzer = analyzer;
        }
    
        /**
         * Sets whether to allow leading wildcards in query terms.
         *
         * @param allowLeadingWildcard true to allow leading wildcards, false otherwise
         */
        public void setAllowLeadingWildcard(final boolean allowLeadingWildcard) {
            this.allowLeadingWildcard = allowLeadingWildcard;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        /** Configuration key for enabling delegation in SPNEGO authentication. */
        protected static final String SPNEGO_ALLOW_DELEGATION = "spnego.allow.delegation";
    
        /** Configuration key for allowing localhost authentication bypass. */
        protected static final String SPNEGO_ALLOW_LOCALHOST = "spnego.allow.localhost";
    
        /** Configuration key for prompting NTLM authentication. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/TempFileCreator.java

            ImmutableList<AclEntry> acl =
                ImmutableList.of(
                    AclEntry.newBuilder()
                        .setType(ALLOW)
                        .setPrincipal(user)
                        .setPermissions(EnumSet.allOf(AclEntryPermission.class))
                        .setFlags(DIRECTORY_INHERIT, FILE_INHERIT)
                        .build());
            FileAttribute<ImmutableList<AclEntry>> attribute =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. mvnw

    export MAVEN_PROJECTBASEDIR
    log "$MAVEN_PROJECTBASEDIR"
    
    ##########################################################################################
    # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
    # This allows using the maven wrapper in projects that prohibit checking in binary data.
    ##########################################################################################
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

          RunnableExecutorPair list;
          synchronized (this) {
            if (executed) {
              return;
            }
            executed = true;
            list = runnables;
            runnables = null; // allow GC to free listeners even if this stays around for a while.
          }
          while (list != null) {
            executeListener(list.runnable, list.executor);
            list = list.next;
          }
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top