Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,213 for Eaccess (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_LINKAT                 = 531 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flags); }
    	SYS_EACCESS                = 532 // { int eaccess(char *path, int flags); }
    	SYS_LPATHCONF              = 533 // { int lpathconf(char *path, int name); }
    	SYS_VMM_GUEST_CTL          = 534 // { int vmm_guest_ctl(int op, struct vmm_guest_options *options); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }
    	SYS___SETUGID                = 374 // { int __setugid(int flag); }
    	SYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }
    	SYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }
    	SYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }
    	SYS___SETUGID                = 374 // { int __setugid(int flag); }
    	SYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }
    	SYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }
    	SYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }
    	SYS___SETUGID                = 374 // { int __setugid(int flag); }
    	SYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }
    	SYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }
    	SYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }
    	SYS___SETUGID                = 374 // { int __setugid(int flag); }
    	SYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }
    	SYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }
    	SYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_EXTATTR_DELETE_FD        = 373 // { int extattr_delete_fd(int fd, int attrnamespace, const char *attrname); }
    	SYS___SETUGID                = 374 // { int __setugid(int flag); }
    	SYS_EACCESS                  = 376 // { int eaccess(char *path, int amode); }
    	SYS_NMOUNT                   = 378 // { int nmount(struct iovec *iovp, unsigned int iovcnt, int flags); }
    	SYS___MAC_GET_PROC           = 384 // { int __mac_get_proc(struct mac *mac_p); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            override fun getDescription(): String? {
                onAccess("description")
                return delegate.description
            }
    
            override fun setDescription(description: String?) {
                onAccess("description")
                delegate.description = description
            }
    
            override fun getGroup(): Any {
                onAccess("group")
                return delegate.group
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            def access = newAccess(OnDemand)
    
            when:
            access.open()
            access.close()
    
            then:
            1 * cleanupExecutor.cleanup()
            0 * _
        }
    
        def "does not clean up on close when clean up has already occurred"() {
            def access = newAccess(OnDemand)
    
            when:
            access.open()
            access.cleanup()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            containsResult == expectedResult
            1 * onAccess.accept(key, reportedValue)
            0 * onAccess._
    
            when:
            def containsAllResult = getMapUnderTestToRead().stringPropertyNames().containsAll(Collections.singleton(key))
    
            then:
            containsAllResult == expectedResult
            1 * onAccess.accept(key, reportedValue)
            0 * onAccess._
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             *
             * @param key the key used by the caller to access the property
             * @param value the value observed by the caller or {@code null} if there is no value for the given key
             */
            void onAccess(Object key, @Nullable Object value);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top