Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for Tperm (0.51 sec)

  1. src/cmd/go/testdata/script/README

    
    cc args...
    	run the platform C compiler
    
    
    cd dir
    	change the working directory
    
    
    chmod perm paths...
    	change file mode bits
    
    	Changes the permissions of the named files or directories to
    	be equal to perm.
    	Only numerical permissions are supported.
    
    cmp [-q] file1 file2
    	compare files for differences
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/os3_solaris.go

    	sysvicall2(&libc_clock_gettime, _CLOCK_MONOTONIC, uintptr(unsafe.Pointer(&ts)))
    	return ts.tv_sec*1e9 + ts.tv_nsec
    }
    
    //go:nosplit
    func open(path *byte, mode, perm int32) int32 {
    	return int32(sysvicall3(&libc_open, uintptr(unsafe.Pointer(path)), uintptr(mode), uintptr(perm)))
    }
    
    func pthread_attr_destroy(attr *pthreadattr) int32 {
    	return int32(sysvicall1(&libc_pthread_attr_destroy, uintptr(unsafe.Pointer(attr))))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    //sys	Mknodat(fd int, path string, mode uint32, dev int) (err error)
    //sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    //sys	Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error)
    //sys	Pathconf(path string, name int) (val int, err error)
    //sys	read(fd int, p []byte) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    //sys	Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
    //sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    //sys	Openat(dirfd int, path string, mode int, perm uint32) (fd int, err error)
    //sys	Pathconf(path string, name int) (val int, err error)
    //sys	pread(fd int, p []byte, offset int64) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. src/os/file_windows.go

    // openFileNolog is the Windows implementation of OpenFile.
    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	if name == "" {
    		return nil, &PathError{Op: "open", Path: name, Err: syscall.ENOENT}
    	}
    	path := fixLongPath(name)
    	r, e := syscall.Open(path, flag|syscall.O_CLOEXEC, syscallMode(perm))
    	if e != nil {
    		// We should return EISDIR when we are trying to open a directory with write access.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top