Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getDirect (0.38 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

                abstract class TaskWithInput extends DefaultTask {
    
                    private final NestedBean nested = project.objects.newInstance(NestedBean.class)
    
                    @Input
                    URL getDirect() { null }
    
                    @Input
                    Provider<URL> getProviderInput() { propertyInput }
    
                    @Input
                    abstract Property<URL> getPropertyInput();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

                    private final NestedBean nested = project.objects.newInstance(NestedBean.class)
    
                    $annotation
                    ResolvedArtifactResult getDirect() { null }
    
                    $annotation
                    Provider<ResolvedArtifactResult> getProviderInput() { propertyInput }
    
                    $annotation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                public abstract class MyTask extends DefaultTask {
    
                    private final NestedBean nested = getProject().getObjects().newInstance(NestedBean.class);
    
                    @Input
                    public URL getDirect() { return null; }
    
                    @Input
                    public Provider<URL> getProviderInput() { return getPropertyInput(); }
    
                    @Input
                    public abstract Property<URL> getPropertyInput();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    private final NestedBean nested = getProject().getObjects().newInstance(NestedBean.class);
    
                    @$annotation
                    public ResolvedArtifactResult getDirect() { return null; }
    
                    @$annotation
                    public Provider<ResolvedArtifactResult> getProviderInput() { return getPropertyInput(); }
    
                    @$annotation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    	reclen, ok := direntReclen(buf)
    	if !ok {
    		return 0, false
    	}
    	return reclen - uint64(unsafe.Offsetof(Dirent{}.Name)), true
    }
    
    //sys	getdirent(fd int, buf []byte) (n int, err error)
    
    func Getdents(fd int, buf []byte) (n int, err error) {
    	return getdirent(fd, buf)
    }
    
    //sys	wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid Pid_t, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. src/syscall/syscall_aix.go

    	return
    }
    
    // TODO
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return -1, ENOSYS
    }
    
    //sys	getdirent(fd int, buf []byte) (n int, err error)
    
    func ReadDirent(fd int, buf []byte) (n int, err error) {
    	return getdirent(fd, buf)
    }
    
    //sys  wait4(pid _Pid_t, status *_C_int, options int, rusage *Rusage) (wpid _Pid_t, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                        }
    
                        long start = System.currentTimeMillis();
                        while (timeout > 0) {
                            response.wait( timeout );
    
                            /* JetDirect printer can respond to regular broadcast query
                             * with node status so we need to check to make sure that
                             * the record type matches the question type and if not,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getdirent(fd int, buf []byte) (n int, err error) {
    	var _p0 *byte
    	if len(buf) > 0 {
    		_p0 = &buf[0]
    	}
    	var _p1 int
    	_p1 = len(buf)
    	r0, er := C.getdirent(C.int(fd), C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))
    	n = int(r0)
    	if r0 == -1 && er != nil {
    		err = er
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    package unix
    
    /*
    #include <stdint.h>
    int utimes(uintptr_t, uintptr_t);
    int utimensat(int, uintptr_t, uintptr_t, int);
    int getcwd(uintptr_t, size_t);
    int accept(int, uintptr_t, uintptr_t);
    int getdirent(int, uintptr_t, size_t);
    int wait4(int, uintptr_t, int, uintptr_t);
    int ioctl(int, int, uintptr_t);
    int fcntl(uintptr_t, int, uintptr_t);
    int fsync_range(int, int, long long, long long);
    int acct(uintptr_t);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_getcwd getcwd "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getdirent getdirent "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_wait4 wait4 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_fsync_range fsync_range "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_bind bind "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top