Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for setxattr (0.29 sec)

  1. docs/debugging/xattr/main.go

    var (
    	path, name string
    	value      uint64
    	set, list  bool
    )
    
    func getxattr(path, name string) (uint64, error) {
    	buf, err := xattr.LGet(path, name)
    	if err != nil {
    		return 0, err
    	}
    
    	return binary.LittleEndian.Uint64(buf[:8]), nil
    }
    
    func listxattr(path string) ([]string, error) {
    	return xattr.LList(path)
    }
    
    func setxattr(path, name string, value uint64) error {
    	data := make([]byte, 8)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Dec 29 23:52:41 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FD ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FILE = 362
    pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_FILE ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_LINK = 368
    pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_GET_LINK ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_EXTATTR_LIST_FD = 370
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. docs_src/sql_databases_peewee/sql_app/database.py

    
    class PeeweeConnectionState(peewee._ConnectionState):
        def __init__(self, **kwargs):
            super().__setattr__("_state", db_state)
            super().__init__(**kwargs)
    
        def __setattr__(self, name, value):
            self._state.get()[name] = value
    
        def __getattr__(self, name):
            return self._state.get()[name]
    
    
    db = peewee.SqliteDatabase(DATABASE_NAME, check_same_thread=False)
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 662 bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FD = 373
    pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FILE = 358
    pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_LINK = 414
    pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FD = 372
    pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FILE = 357
    pkg syscall (freebsd-386), const SYS_EXTATTR_GET_LINK = 413
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FD ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_FILE ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_DELETE_LINK ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FD ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_FILE ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_EXTATTR_GET_LINK ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_SETWGROUPS = 289
    pkg syscall (darwin-arm64), const SYS_SETWGROUPS ideal-int
    pkg syscall (darwin-arm64), const SYS_SETXATTR = 236
    pkg syscall (darwin-arm64), const SYS_SETXATTR ideal-int
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP = 294
    pkg syscall (darwin-arm64), const SYS_SHARED_REGION_CHECK_NP ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. fastapi/dependencies/utils.py

                isinstance(field_info, params.Param)
                and getattr(field_info, "in_", None) is None
            ):
                field_info.in_ = params.ParamTypes.query
            use_annotation_from_field_info = get_annotation_from_field_info(
                use_annotation,
                field_info,
                param_name,
            )
            if not field_info.alias and getattr(field_info, "convert_underscores", None):
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:52:56 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FD ideal-int
    pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_FILE ideal-int
    pkg syscall (freebsd-386), const SYS_EXTATTR_DELETE_LINK ideal-int
    pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FD ideal-int
    pkg syscall (freebsd-386), const SYS_EXTATTR_GET_FILE ideal-int
    pkg syscall (freebsd-386), const SYS_EXTATTR_GET_LINK ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/util/PrunedTag.java

        }
    
        public void setId(final String id) {
            this.id = id;
        }
    
        public void setCss(final String css) {
            this.css = css;
        }
    
        public void setAttr(final String name, final String value) {
            this.attrName = name;
            this.attrValue = value;
        }
    
        @Override
        public String toString() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/api_template.__init__.py

    _initializers = _KerasLazyLoader(
        globals(), submodule="initializers", name="initializers")
    setattr(_current_module, "losses", _losses)
    setattr(_current_module, "metrics", _metrics)
    setattr(_current_module, "optimizers", _optimizers)
    setattr(_current_module, "initializers", _initializers)
    
    
    # Do an eager load for Keras' code so that any function/method that needs to
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 06:27:59 GMT 2024
    - 6.7K bytes
    - Viewed (3)
Back to top