Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for Tperm (0.04 sec)

  1. pkg/volume/emptydir/empty_dir_test.go

    	if err != nil {
    		if os.IsNotExist(err) {
    			return fmt.Errorf("SetUp() failed, volume path not created: %s", volPath)
    		}
    		return fmt.Errorf("SetUp() failed: %v", err)
    	}
    	if e, a := perm, fileinfo.Mode().Perm(); e != a {
    		return fmt.Errorf("unexpected file mode for %v: expected: %v, got: %v", volPath, e, a)
    	}
    	return nil
    }
    
    func testTearDown(unmounter volume.Unmounter, metadataDir, volPath string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

                                         BoolAttr transpose_b) {
      // Transpose and constant-fold the weight if needed.
      if (transpose_b.getValue()) {
        Value perm = Create1DConstValue<int32_t>(builder, loc, {1, 0});
        auto transpose_op = builder.create<TF::TransposeOp>(loc, weight, perm);
        weight = ConstantFoldOpIfPossible(transpose_op).front();
      }
    
      xla::DotDimensionNumbers dnums;
      dnums.add_rhs_contracting_dimensions(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_riscv64.s

    	FENCE
    	MOVW	ZERO, (A0)
    	FENCE
    	MOV	$0, A0	// exit code
    	MOV	$SYS_exit, A7
    	ECALL
    	JMP	0(PC)
    
    // func open(name *byte, mode, perm int32) int32
    TEXT runtimeĀ·open(SB),NOSPLIT|NOFRAME,$0-20
    	MOV	$AT_FDCWD, A0
    	MOV	name+0(FP), A1
    	MOVW	mode+8(FP), A2
    	MOVW	perm+12(FP), A3
    	MOV	$SYS_openat, A7
    	ECALL
    	MOV	$-4096, T0
    	BGEU	T0, A0, 2(PC)
    	MOV	$-1, A0
    	MOVW	A0, ret+16(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_loong64.s

    	MOVW	R11, (R19)
    	DBAR
    	MOVW	$0, R4	// exit code
    	MOVV	$SYS_exit, R11
    	SYSCALL
    	JMP	0(PC)
    
    // func open(name *byte, mode, perm int32) int32
    TEXT runtimeĀ·open(SB),NOSPLIT|NOFRAME,$0-20
    	MOVW	$AT_FDCWD, R4 // AT_FDCWD, so this acts like open
    	MOVV	name+0(FP), R5
    	MOVW	mode+8(FP), R6
    	MOVW	perm+12(FP), R7
    	MOVV	$SYS_openat, R11
    	SYSCALL
    	MOVW	$-4096, R5
    	BGEU	R5, R4, 2(PC)
    	MOVW	$-1, R4
    	MOVW	R4, ret+16(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    		}
    		lo, err := strconv.ParseUint(loStr, 16, 64)
    		if err != nil {
    			continue
    		}
    		hi, err := strconv.ParseUint(hiStr, 16, 64)
    		if err != nil {
    			continue
    		}
    		perm := next()
    		if len(perm) < 4 || perm[2] != 'x' {
    			// Only interested in executable mappings.
    			continue
    		}
    		offset, err := strconv.ParseUint(string(next()), 16, 64)
    		if err != nil {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    	// Set file permission bits.
    	mode = fs.FileMode(fi.h.Mode).Perm()
    
    	// Set setuid, setgid and sticky bits.
    	if fi.h.Mode&c_ISUID != 0 {
    		mode |= fs.ModeSetuid
    	}
    	if fi.h.Mode&c_ISGID != 0 {
    		mode |= fs.ModeSetgid
    	}
    	if fi.h.Mode&c_ISVTX != 0 {
    		mode |= fs.ModeSticky
    	}
    
    	// Set file mode bits; clear perm, setuid, setgid, and sticky bits.
    	switch m := fs.FileMode(fi.h.Mode) &^ 07777; m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    type SysvIpcPerm struct {
    	Key  int32
    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint32
    	Seq  uint32
    	_    uint32
    	_    uint64
    	_    uint64
    }
    type SysvShmDesc struct {
    	Perm       SysvIpcPerm
    	Atime_high uint32
    	Atime      uint32
    	Dtime_high uint32
    	Dtime      uint32
    	Ctime_high uint32
    	Ctime      uint32
    	_          uint32
    	Segsz      uint32
    	Cpid       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go

    type SysvIpcPerm struct {
    	Key  int32
    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint32
    	Seq  uint32
    	_    uint32
    	_    uint64
    	_    uint64
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Atime  int64
    	Dtime  int64
    	Ctime  int64
    	Segsz  uint64
    	Cpid   int32
    	Lpid   int32
    	Nattch uint64
    	_      uint64
    	_      uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go

    	Key  int32
    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint32
    	_    [0]uint8
    	Seq  uint16
    	_    uint16
    	_    uint64
    	_    uint64
    }
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	Segsz  uint64
    	Atime  int64
    	Dtime  int64
    	Ctime  int64
    	Cpid   int32
    	Lpid   int32
    	Nattch uint64
    	_      uint64
    	_      uint64
    }
    
    type RISCVHWProbePairs struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go

    	Key  int32
    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode uint16
    	_    [2]uint8
    	Seq  uint16
    	_    uint16
    	_    uint32
    	_    uint32
    }
    type SysvShmDesc struct {
    	Perm       SysvIpcPerm
    	Segsz      uint32
    	Atime      uint32
    	Atime_high uint32
    	Dtime      uint32
    	Dtime_high uint32
    	Ctime      uint32
    	Ctime_high uint32
    	Cpid       int32
    	Lpid       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top