Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 789 for ACCESS (0.04 sec)

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

            activityHelper.access(OptionalThing.empty(), "/", "aaa");
            assertEquals("action:ACCESS\tuser:-\tpath:/\texecute:aaa", localLogMsg.get());
    
            activityHelper.access(createUser("testuser", new String[0]), "/aaa", "bbb");
            assertEquals("action:ACCESS\tuser:testuser\tpath:/aaa\texecute:bbb", localLogMsg.get());
    
    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. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

        public void test_corsHeaderConstants() {
            assertEquals("Access-Control-Allow-Origin", CorsHandler.ACCESS_CONTROL_ALLOW_ORIGIN);
            assertEquals("Access-Control-Allow-Headers", CorsHandler.ACCESS_CONTROL_ALLOW_HEADERS);
            assertEquals("Access-Control-Allow-Methods", CorsHandler.ACCESS_CONTROL_ALLOW_METHODS);
            assertEquals("Access-Control-Allow-Private-Network", CorsHandler.ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK);
    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. src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java

         *
         * @param buffer memory buffer to register
         * @param access access permissions for the memory region
         * @return registered memory region
         * @throws IOException if memory registration fails
         */
        RdmaMemoryRegion registerMemory(ByteBuffer buffer, EnumSet<RdmaAccess> access) throws IOException;
    
        /**
         * Get provider name (e.g., "InfiniBand", "iWARP", "RoCE", "TCP Fallback")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. docs/iam/opa.md

    OPA is enabled through MinIO's Access Management Plugin feature.
    
    ## Get started
    
    ### 1. Start OPA in a container
    
    ```sh
    podman run -it \
        --name opa \
        --publish 8181:8181 \
        docker.io/openpolicyagent/opa:0.40.0-rootless \
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.io.IOException;
    
    /**
     * Represents a Windows security descriptor containing access control information.
     * This class encodes and decodes security descriptors that define ownership
     * and access permissions for SMB resources.
     */
    public class SecurityDescriptor {
    
        SID owner_user, owner_group;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrConnect4Test.java

         */
        @Test
        void testMsrpcSamrConnect4() {
            // Given
            final String server = "test-server";
            final int access = 1;
    
            // When
            final MsrpcSamrConnect4 request = new MsrpcSamrConnect4(server, access, this.policyHandle);
    
            // Then
            assertEquals(0, request.getPtype());
            assertEquals(DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG, request.getFlags());
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle-handlers_test.go

    			expectedRespStatus: http.StatusForbidden,
    			lifecycleResponse:  []byte(""),
    			errorResponse: APIErrorResponse{
    				Resource: SlashSeparator + bucketName + SlashSeparator,
    				Code:     "AccessDenied",
    				Message:  "Access Denied.",
    			},
    			shouldPass: false,
    		},
    		// GET wrong credentials
    		{
    			method: http.MethodGet, bucketName: bucketName,
    			accessKey:          "abcd",
    			secretKey:          "abcd",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. docs/ftp/README.md

    ## Scope
    
    - All IAM Credentials are allowed access excluding rotating credentials, rotating credentials
      are not allowed to login via FTP/SFTP ports, you must use S3 API port for if you are using
      rotating credentials.
    
    - Access to bucket(s) and object(s) are governed via IAM policies associated with the incoming
      login credentials.
    
    - Allows authentication and access for all
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/samr.java

            /** The desired access rights to the SAM server */
            public int access_mask;
            /** The returned handle to the SAM server */
            public rpc.policy_handle handle;
    
            /**
             * Constructs a SamrConnect2 request.
             *
             * @param system_name The NetBIOS name of the server
             * @param access_mask The desired access rights
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

            /** The desired access rights to the SAM server */
            public int access_mask;
            /** The returned handle to the SAM server */
            public rpc.policy_handle handle;
    
            /**
             * Constructs a SamrConnect2 request.
             *
             * @param system_name The NetBIOS name of the server
             * @param access_mask The desired access rights
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top