Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,581 for mprotect (0.29 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go

    	_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mprotect(b []byte, prot int) (err error) {
    	var _p0 unsafe.Pointer
    	if len(b) > 0 {
    		_p0 = unsafe.Pointer(&b[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go

    	_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mprotect(b []byte, prot int) (err error) {
    	var _p0 unsafe.Pointer
    	if len(b) > 0 {
    		_p0 = unsafe.Pointer(&b[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go

    	_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mprotect(b []byte, prot int) (err error) {
    	var _p0 unsafe.Pointer
    	if len(b) > 0 {
    		_p0 = unsafe.Pointer(&b[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 44.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go

    	_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mprotect(b []byte, prot int) (err error) {
    	var _p0 unsafe.Pointer
    	if len(b) > 0 {
    		_p0 = unsafe.Pointer(&b[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go

    	_, _, e1 := Syscall(SYS_MLOCKALL, uintptr(flags), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mprotect(b []byte, prot int) (err error) {
    	var _p0 unsafe.Pointer
    	if len(b) > 0 {
    		_p0 = unsafe.Pointer(&b[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

                return false;
            }
            Project project = (Project) o;
            return Objects.equal(jdk, project.jdk)
                && Objects.equal(modulePaths, project.modulePaths)
                && Objects.equal(projectLibraries, project.projectLibraries)
                && Objects.equal(wildcards, project.wildcards)
                && Objects.equal(vcs, project.vcs);
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

                return false;
            }
            Project project = (Project) o;
            return Objects.equal(buildCommands, project.buildCommands)
                && Objects.equal(comment, project.comment)
                && Objects.equal(linkedResources, project.linkedResources)
                && Objects.equal(resourceFilters, project.resourceFilters)
                && Objects.equal(name, project.name)
                && Objects.equal(natures, project.natures)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-create-project.png

    teamcity-create-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginTemplatesTest.kt

                verifyNoMoreInteractions()
            }
        }
    
        private
        fun KStubbing<Project>.onProject(path: String, project: Project) {
            on { project(eq(path), any<Action<Project>>()) } doAnswer {
                it.executeActionArgument(1, project)
                project
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top