Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Fremovexattr (0.28 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    	MOVD $·Flistxattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_FremovexattrAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Fremovexattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_FgetxattrAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Fgetxattr(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

        Operation* iter_op = op;
        bool remove_attr = false;
        while (auto* parent_op = iter_op->getParentOp()) {
          if (parent_op->getAttrOfType<StringAttr>(kXlaOutsideCompilationAttr)) {
            remove_attr = true;
            break;
          }
          iter_op = parent_op;
        }
        if (remove_attr) op->removeAttr(kXlaOutsideCompilationAttr);
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

             function_name.contains("conv3d"))) {
          call_op->removeAttr(kQuantTraitAttrName);
        }
    
        // TODO(b/270906404): Support weight-only gather for uniform quantized opset
        // in PTQ mode
        if (target_opset_ == OpSet::UNIFORM_QUANTIZED &&
            function_name.contains("gather")) {
          call_op->removeAttr(kQuantTraitAttrName);
        }
    
        return failure();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

            if (!f->hasAttr(kFromXlaCallModuleAttrName)) {
              return WalkResult::advance();
            }
    
            auto cloned = llvm::cast<func::FuncOp>(builder.clone(*f));
            cloned->removeAttr(kFromXlaCallModuleAttrName);
    
            if (f == entry_func) {
              // Entry function must be public and has symbol name "@main".
              cloned.setPublic();
              cloned.setName(kStablehloMainFunctionName);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tpu_model_to_cpu.cc

                                    PatternRewriter& rewriter) const override {
        // Remove `_tpu_replicate` attributes on each operation first.
        if (op->hasAttr(tensorflow::kTPUReplicateAttr)) {
          op->removeAttr(tensorflow::kTPUReplicateAttr);
          return success();
        }
    
        // Remove TPU operations.
        if (isa<TF::TPUReplicateMetadataOp, TF::TPUCompilationResultOp,
                TF::TPUOrdinalSelectorOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        AddCallOpInWhileOpRegion(while_op.getCond(), cond);
        while_op->removeAttr("cond");
        auto body = symbol_table.lookup<mlir::func::FuncOp>(
            while_op->getAttr("body").cast<mlir::FlatSymbolRefAttr>().getValue());
        AddCallOpInWhileOpRegion(while_op.getBody(), body);
        while_op->removeAttr("body");
      });
    }
    
    void AddRegionsForStableHLOOp(mlir::ModuleOp module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top