Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,857 for Eaccess (0.19 sec)

  1. fess-crawler/src/test/resources/extractor/test.xml

    		<name>鈴木太郎</name>
    		<access kind="email"></access>
    		<access kind="url">http://www.taro.com/</access>
    		<image file="taro.png" />
    	</item>
    	<item sex="male" custid="B23456">
    		<name>佐藤二朗</name>
    		<access kind="email">******@****.***</access>
    		<image file="jiro.png" />
    	</item>
    	<item sex="female" custid="C34567">
    		<name>田中花子</name>
    		<access kind="tel">090-xxxx-xxxx</access>
    		<image file="hanako.png" />
    	</item>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 582 bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

        }
    
        public static boolean isCandidateApiMember(int access, boolean apiIncludesPackagePrivateMembers) {
            return isPublicMember(access)
                || isProtectedMember(access)
                || (apiIncludesPackagePrivateMembers && isPackagePrivateMember(access));
        }
    
        private static boolean isPublicMember(int access) {
            return (access & ACC_PUBLIC) == ACC_PUBLIC;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. internal/config/identity/openid/jwt_test.go

    			claims["exp"] = testCase.exp
    			err := updateClaimsExpiry(testCase.dsecs, claims)
    			if err != nil && !testCase.expectedFailure {
    				t.Errorf("Expected success, got failure %s", err)
    			}
    			if err == nil && testCase.expectedFailure {
    				t.Error("Expected failure, got success")
    			}
    		})
    	}
    }
    
    func initJWKSServer() *httptest.Server {
    	server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/OnDemandFileAccessTest.groovy

            given:
            def access = access(file)
            access.writeFile({})
    
            expect:
            access.readFile { assert !file.exists(); true }
    
            when:
            access.updateFile { file << "aaa" }
    
            then:
            access.readFile { file.text } == "aaa"
        }
    
        def "can write and update"() {
            given:
            def access = access(file)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

     */
    
    package org.gradle.api.file;
    
    /**
     * Describes file and directory access permissions for a certain class of users (see {@link FilePermissions}).
     * <p>
     * Permissions consist of:
     * <ul>
     *     <li>READ access: the capability to view the contents of a file, or to list the contents of a directory</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ACE.java

     * mask of the ACE, the whole access check fails. If the ACE is an "allow"
     * ACE and <i>all</i> of the bits in the desired access bits match bits in
     * the access mask of the ACE, the access check is successful. Otherwise,
     * more ACEs are evaluated until all desired access bits (combined)
     * are "allowed". If all of the desired access bits are not "allowed"
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/extractor/xml/test_utf8bom.xml

                    <name>鈴木太郎</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
                    <image file="taro.png" />
            </item>
            <item sex="male" custid="B23456">
                    <name>佐藤二朗</name>
                    <access kind="email">******@****.***</access>
                    <image file="jiro.png" />
            </item>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 729 bytes
    - Viewed (0)
  8. src/syscall/tables_js.go

    	"ENXIO":           ENXIO,
    	"E2BIG":           E2BIG,
    	"ENOEXEC":         ENOEXEC,
    	"EBADF":           EBADF,
    	"ECHILD":          ECHILD,
    	"EAGAIN":          EAGAIN,
    	"ENOMEM":          ENOMEM,
    	"EACCES":          EACCES,
    	"EFAULT":          EFAULT,
    	"EBUSY":           EBUSY,
    	"EEXIST":          EEXIST,
    	"EXDEV":           EXDEV,
    	"ENODEV":          ENODEV,
    	"ENOTDIR":         ENOTDIR,
    	"EISDIR":          EISDIR,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/ACE.java

     * mask of the ACE, the whole access check fails. If the ACE is an "allow"
     * ACE and <i>all</i> of the bits in the desired access bits match bits in
     * the access mask of the ACE, the access check is successful. Otherwise,
     * more ACEs are evaluated until all desired access bits (combined)
     * are "allowed". If all of the desired access bits are not "allowed"
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Started a process to delete the document from index. */
        public static final String SUCCESS_delete_doc_from_index = "{success.delete_doc_from_index}";
    
        /** The key of the message: Deleted session data. */
        public static final String SUCCESS_crawling_info_delete_all = "{success.crawling_info_delete_all}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top