Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 226 for getg (0.03 sec)

  1. src/syscall/asm_linux_386.s

    	MOVL	AX, r1+16(FP)
    	MOVL	DX, r2+20(FP)
    	RET
    
    #define SYS_SOCKETCALL 102	/* from zsysnum_linux_386.go */
    
    // func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-36
    	CALL	runtime·entersyscall(SB)
    	MOVL	$SYS_SOCKETCALL, AX	// syscall entry
    	MOVL	call+0(FP), BX	// socket call number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

        @Requires(IntegTestPreconditions.NotParallelExecutor)
        def "reasonable failure message when --max-workers=#value"() {
            given:
            executer.requireDaemon().requireIsolatedDaemons()  // otherwise exception gets thrown in testing infrastructure
    
            when:
            executer.withArgument("--max-workers=$value")
    
            then:
            fails "help"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/groovy/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::groovyJdk[]
    // Iterable gets an each() method
    configurations.runtimeClasspath.each { File f -> println f }
    // end::groovyJdk[]
    
    // tag::propertyAccessors[]
    // Using a getter method
    println project.buildDir
    println getProject().getBuildDir()
    
    // Using a setter method
    project.buildDir = 'target'
    getProject().setBuildDir('target')
    // end::propertyAccessors[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/util/procfs/procfs_fake.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package procfs
    
    type FakeProcFS struct{}
    
    // GetFullContainerName gets the container name given the root process id of the container.
    // E.g. if the devices cgroup for the container is stored in /sys/fs/cgroup/devices/docker/nginx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 986 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/testdata/issue62430/main.go

    // to have no references to an initialized global map variable defined
    // in some stdlib package (ex: unicode), however there
    // may be references to that map var from a plugin that
    // gets loaded.
    
    package main
    
    import (
    	"fmt"
    	"plugin"
    	"unicode"
    )
    
    func main() {
    	p, err := plugin.Open("issue62430.so")
    	if err != nil {
    		panic(err)
    	}
    	s, err := p.Lookup("F")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 13:18:51 UTC 2023
    - 804 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap.go

    func Mmap(f *os.File, data *Data) (Data, error) {
    	return mmapFile(f, data)
    }
    
    // Munmap unmaps the given file from memory.
    func Munmap(d *Data) error {
    	// d.f.Close() on Windows still gets an error
    	return munmapFile(*d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1002 bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/TemplateBasedScriptGenerator.java

        /**
         * Sets the template text resource used for generating script.
         *
         * @param template Template text resource
         */
        void setTemplate(TextResource template);
    
        /**
         * Gets the template reader used for generating script.
         *
         * @return Template reader
         */
        TextResource getTemplate();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	}
    	return utilerrors.NewAggregate(errs)
    }
    
    // GetNamespaceLabels gets the labels of the namespace related to the attr.
    func (m *Matcher) GetNamespaceLabels(attr admission.Attributes) (map[string]string, error) {
    	// If the request itself is creating or updating a namespace, then get the
    	// labels from attr.Object, because namespaceLister doesn't have the latest
    	// namespace yet.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/TaskExecution.java

        private final String path;
        private TaskState state;
    
        public TaskExecution(String taskPath) {
            super(taskPath);
            this.path = taskPath;
        }
    
        /**
         * Gets the string task path.
         */
        public String getPath() {
            return path;
        }
    
        public String getStatus() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. doc/next/9-todo.md

    CL 555597 - optimizes TypeFor (added in accepted proposal https://go.dev/issue/60088) for non-interface types; doesn't seem to need a release note
    a few x/tools CLs deprecated and deleted the experimental golang.org/x/tools/cmd/getgo tool per accepted proposal https://go.dev/issue/60951; an unreleased change and not something that's in scope of Go 1.23 release notes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top