Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 609 for getg (0.16 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

            } else {
                return new AttributeBasedFileVisitDetails(file, relativePath, stopFlag, fileSystem, fileSystem, attrs);
            }
        }
    
        /**
         * Gets attributes and returns FileVisitDetails for the given relativePath.
         *
         * @param path Path of the file
         * @param relativePath RelativePath of the file
         * @param stopFlag transient flag to stop visiting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/util/procfs/procfs.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package procfs
    
    type ProcFSInterface interface {
    	// GetFullContainerName gets the container name given the root process id of the container.
    	GetFullContainerName(pid int) (string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 18:57:44 UTC 2016
    - 762 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/testdata/testwinlibsignal/main.c

            return 1;
        }
    
        // The library must be loaded after the SetConsoleCtrlHandler call
        // so that the library handler registers after the main program.
        // This way the library handler gets called first.
        HMODULE dummyDll = LoadLibrary("dummy.dll");
        if (!dummyDll) {
            fprintf(stderr, "ERROR: Could not load dummy.dll\n");
            return 1;
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top