Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for Ioperm (0.14 sec)

  1. src/syscall/syscall_openbsd_libc.go

    //sysnb getentropy(p []byte) (err error)
    //sys   fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys   unlinkat(fd int, path string, flags int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. cmd/ftp-server.go

    		Name:           name,
    		WelcomeMessage: fmt.Sprintf("Welcome to '%s' FTP Server Version='%s' License='%s'", MinioStoreName, MinioLicense, Version),
    		Driver:         NewFTPDriver(),
    		Port:           port,
    		Perm:           ftp.NewSimplePerm("nobody", "nobody"),
    		TLS:            tls,
    		KeyFile:        tlsPrivateKey,
    		CertFile:       tlsPublicCert,
    		ExplicitFTPS:   tls,
    		Logger:         &minioLogger{},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/go/types/issues_test.go

    	}
    
    	// run the test for all order permutations of the incoming files
    	for _, perm := range [][len(sources)]int{
    		{0, 1, 2},
    		{0, 2, 1},
    		{1, 0, 2},
    		{1, 2, 0},
    		{2, 0, 1},
    		{2, 1, 0},
    	} {
    		// create file order permutation
    		files := make([]*ast.File, len(sources))
    		for i := range perm {
    			files[i] = orig[perm[i]]
    		}
    
    		// type-check package with given file order permutation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                        System.setSecurityManager(new SecurityManager() {
                            @Override
                            public void checkPermission(Permission perm) {
                                if ("setSecurityManager".equals(perm.getName())) {
                                    throw new SecurityException("You cannot replace this security manager!");
                                }
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin.go

    //sys	Mprotect(b []byte, prot int) (err error)
    //sys	msync(b []byte, flags int) (err error)
    //sys	Munlock(b []byte) (err error)
    //sys	Munlockall() (err error)
    //sys	Open(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)
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"InterfaceMulticastAddrMessage", Type, 0},
    		{"InterfaceMulticastAddrMessage.Data", Field, 0},
    		{"InterfaceMulticastAddrMessage.Header", Field, 0},
    		{"InvalidHandle", Const, 0},
    		{"Ioperm", Func, 0},
    		{"Iopl", Func, 0},
    		{"Iovec", Type, 0},
    		{"Iovec.Base", Field, 0},
    		{"Iovec.Len", Field, 0},
    		{"IpAdapterInfo", Type, 0},
    		{"IpAdapterInfo.AdapterName", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %dq = "tfl.dequantize"(%q) : (tensor<5x2x!quant.uniform<i8<-127:127>:f32, 1.113490e-03>>) -> tensor<5x2xf32>
      %t = "tfl.transpose"(%dq, %perm) : (tensor<5x2xf32>, tensor<2xi32>) -> tensor<2x5xf32>
      func.return %t : tensor<2x5xf32>
    
      // QDQ: %[[perm:.*]] = arith.constant dense<[1, 0]> : tensor<2xi32>
      // QDQ-NEXT: %[[w:.*]] = arith.constant dense<1.000000e+00> : tensor<5x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/internal/obj/ppc64/a.out.go

    	AVCMPGTSH
    	AVCMPGTSHCC
    	AVCMPGTSW
    	AVCMPGTSWCC
    	AVCMPGTSD
    	AVCMPGTSDCC
    	AVCMPNEZB
    	AVCMPNEZBCC
    	AVCMPNEB
    	AVCMPNEBCC
    	AVCMPNEH
    	AVCMPNEHCC
    	AVCMPNEW
    	AVCMPNEWCC
    	AVPERM
    	AVPERMXOR
    	AVPERMR
    	AVBPERMQ
    	AVBPERMD
    	AVSEL
    	AVSPLTB
    	AVSPLTH
    	AVSPLTW
    	AVSPLTISB
    	AVSPLTISH
    	AVSPLTISW
    	AVCIPH
    	AVCIPHER
    	AVCIPHERLAST
    	AVNCIPH
    	AVNCIPHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top