Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 570 for mprotect (0.18 sec)

  1. src/syscall/syscall_darwin.go

    //sys	Mkfifo(path string, mode uint32) (err error)
    //sys	Mknod(path string, mode uint32, dev int) (err error)
    //sys	Mlock(b []byte) (err error)
    //sys	Mlockall(flags int) (err error)
    //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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    #include <sys/mman.h>
    // Returns string with null byte at the last valid address
    char* dangerousString1() {
    	int pageSize = 4096;
    	char *data = mmap(0, 2 * pageSize, PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, 0, 0);
    	mprotect(data + pageSize,pageSize,PROT_NONE);
    	int start = pageSize - 123 - 1; // last 123 bytes of first page + 1 null byte
    	int i = start;
    	for (; i < pageSize; i++) {
    	data[i] = 'x';
    	}
    	data[pageSize -1 ] = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    	return mapper.Mmap(fd, offset, length, prot, flags)
    }
    
    func Munmap(b []byte) (err error) {
    	return mapper.Munmap(b)
    }
    
    //sys	Madvise(b []byte, advice int) (err error)
    //sys	Mprotect(b []byte, prot int) (err error)
    //sys	Mlock(b []byte) (err error)
    //sys	Munlock(b []byte) (err error)
    //sys	Mlockall(flags int) (err error)
    //sys	Munlockall() (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    +
    If you are developing custom Gradle plugins for your project, `buildSrc` is a convenient place to house the plugin code.
    This makes the plugins easily accessible within your project.
    
    The `buildSrc` directory is treated as an <<composite_builds.adoc#composite_build_intro,included build>>.
    
    For multi-project builds, there can be only one `buildSrc` directory, which must be in the root project directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    		return pkg, nil
    	})
    }
    
    var errCorrupt = errors.New("corrupt index")
    
    // protect marks the start of a large section of code that accesses the index.
    // It should be used as:
    //
    //	defer unprotect(protect, &err)
    //
    // It should not be used for trivial accesses which would be
    // dwarfed by the overhead of the defer.
    func protect() bool {
    	return debug.SetPanicOnFault(true)
    }
    
    var isTest = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            pomReader.properties['project.parent.version'] == 'version-one'
            pomReader.properties['project.parent.groupId'] == 'group-one'
            pomReader.properties['project.parent.artifactId'] == 'artifact-one'
            pomReader.relocation == null
            !pomReader.hasGradleMetadataMarker()
        }
    
        def "use custom properties in POM project coordinates"() {
            when:
            pomFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/BUILD

            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:ArithDialect",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
            "@llvm-project//mlir:ShapeDialect",
            "@llvm-project//mlir:TensorDialect",
            "@llvm-project//mlir:TransformUtils",
            "@llvm-project//mlir:Transforms",
            "@local_xla//xla/mlir_hlo",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/BUILD

            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:FuncExtensions",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:InferTypeOpInterface",
            "@llvm-project//mlir:InliningUtils",
            "@llvm-project//mlir:LoopLikeInterface",
            "@llvm-project//mlir:MLProgramDialect",
            "@llvm-project//mlir:Parser",
            "@llvm-project//mlir:Pass",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:ArithDialect",
            "@llvm-project//mlir:Dialect",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:MemRefDialect",
            "@llvm-project//mlir:Pass",
            "@llvm-project//mlir:ShapeDialect",
            "@llvm-project//mlir:Support",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
            "@llvm-project//mlir:Rewrite",
            "@llvm-project//mlir:Support",
            "@llvm-project//mlir:TransformUtils",
        ],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top