Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for Fremovexattr (0.47 sec)

  1. src/syscall/zsysnum_netbsd_386.go

    	SYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }
    	SYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }
    	SYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }
    	SYS_GETDENTS             = 390 // { int|sys|30|getdents(int fd, char *buf, size_t count); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_removexattr_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_removexattr removexattr "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fremovexattr(fd int, attr string, options int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_removexattr_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_removexattr removexattr "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fremovexattr(fd int, attr string, options int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	_, _, e1 := Syscall(SYS_FLOCK, uintptr(fd), uintptr(how), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Fremovexattr(fd int, attr string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    	_, _, e1 := Syscall(SYS_FREMOVEXATTR, uintptr(fd), uintptr(unsafe.Pointer(_p0)), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	FinitModule(fd int, params string, flags int) (err error)
    //sys	Flistxattr(fd int, dest []byte) (sz int, err error)
    //sys	Flock(fd int, how int) (err error)
    //sys	Fremovexattr(fd int, attr string) (err error)
    //sys	Fsetxattr(fd int, attr string, dest []byte, flags int) (err error)
    //sys	Fsync(fd int) (err error)
    //sys	Fsmount(fd int, flags int, mountAttrs int) (fsfd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_FremovexattrAddr() *(func(fd int, attr string) (err error))
    
    var Fremovexattr = enter_Fremovexattr
    
    func enter_Fremovexattr(fd int, attr string) (err error) {
    	funcref := get_FremovexattrAddr()
    	if funcptrtest(GetZosLibVec()+SYS___FREMOVEXATTR_A<<4, "") == 0 {
    		*funcref = impl_Fremovexattr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	cmsg.Len = int32(length)
    }
    
    //sys   fcntl(fd int, cmd int, arg int) (val int, err error)
    //sys   Flistxattr(fd int, dest []byte) (sz int, err error) = SYS___FLISTXATTR_A
    //sys   Fremovexattr(fd int, attr string) (err error) = SYS___FREMOVEXATTR_A
    //sys	read(fd int, p []byte) (n int, err error)
    //sys	write(fd int, p []byte) (n int, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tpu_cluster_cleanup_attributes.cc

          if (isa<tf_device::ClusterOp>(op)) return WalkResult::advance();
          op->removeAttr(TF::kReplicationInfoAttr);
          op->removeAttr(TF::kCompileDeviceTypeAttr);
          // This attribute is used for op colocation. Since all ops are located
          // on a single device cluster, this private attribute is no longer
          // needed.
          op->removeAttr(kClassAttr);
          if (auto attr = op->getAttrOfType<StringAttr>(kDeviceAttr)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/add_functions_for_exported_names.cc

      void runOnOperation() override;
    };
    
    // Set the (array of) exported name(s) of a (public) function to just
    // contain the given string.
    void SetExportedName(func::FuncOp f, StringRef name) {
      OpBuilder b(f);
      f->removeAttr(kTfSavedModelExportedNamesAttr);
      f->setAttr(kTfSavedModelExportedNamesAttr, b.getStrArrayAttr({name}));
    }
    
    // Convert a savedmodel public function into a private function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 08:06:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/drop_savedmodel_semantics.cc

        auto exported_names = builder.getStringAttr(kTfSavedModelExportedNamesAttr);
        auto index_path = builder.getStringAttr(kTfSavedModelIndexPathAttr);
        module.walk([&](func::FuncOp func) {
          func->removeAttr(exported_names);
          for (unsigned i = 0, e = func.getNumArguments(); i != e; ++i) {
            if (func.getArgAttrOfType<FlatSymbolRefAttr>(i, bound_input)) {
              func.removeArgAttr(i, bound_input);
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 13 23:39:10 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top