Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 279 for setnle (0.16 sec)

  1. src/syscall/zerrors_windows.go

    	ESPIPE - APPLICATION_ERROR:          "illegal seek",
    	ESRCH - APPLICATION_ERROR:           "no such process",
    	ESRMNT - APPLICATION_ERROR:          "srmount error",
    	ESTALE - APPLICATION_ERROR:          "stale NFS file handle",
    	ESTRPIPE - APPLICATION_ERROR:        "streams pipe error",
    	ETIME - APPLICATION_ERROR:           "timer expired",
    	ETIMEDOUT - APPLICATION_ERROR:       "connection timed out",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_amd64.go

    func (r *PtraceRegs) PC() uint64 { return r.Rip }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Rip = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint64(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/src/main/java/org/gradle/Person.java

            return surname;
        }
    
        public void setSurname(String surname) {
            this.surname = surname;
        }
    
        public int getAge() {
            return age;
        }
    
        public void setAge(int age) {
            this.age = age;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 369 bytes
    - Viewed (0)
  4. pilot/pkg/features/tuning.go

    		"The delay added to config/registry events for debouncing. This will delay the push by "+
    			"at least this interval. If no change is detected within this period, the push will happen, "+
    			" otherwise we'll keep delaying until things settle, up to a max of PILOT_DEBOUNCE_MAX.",
    	).Get()
    
    	DebounceMax = env.Register(
    		"PILOT_DEBOUNCE_MAX",
    		10*time.Second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifact.java

                    project.getVersion(),
                    null,
                    "pom",
                    null,
                    new PomArtifactHandler());
            this.project = project;
            setFile(project.getFile());
            setResolved(true);
        }
    
        public MavenProject getProject() {
            return project;
        }
    
        public List<Dependency> getDependencies() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/runtime/defs_windows_arm.go

    func (c *context) lr() uintptr { return uintptr(c.lrr) }
    
    func (c *context) set_ip(x uintptr) { c.pc = uint32(x) }
    func (c *context) set_sp(x uintptr) { c.spr = uint32(x) }
    func (c *context) set_lr(x uintptr) { c.lrr = uint32(x) }
    
    // arm does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    func prepareContextForSigResume(c *context) {
    	c.r0 = c.spr
    	c.r1 = c.pc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "SETEQ", argLength: 1, reg: readflags, asm: "SETEQ"}, // extract == condition from arg0
    		{name: "SETNE", argLength: 1, reg: readflags, asm: "SETNE"}, // extract != condition from arg0
    		{name: "SETL", argLength: 1, reg: readflags, asm: "SETLT"},  // extract signed < condition from arg0
    		{name: "SETLE", argLength: 1, reg: readflags, asm: "SETLE"}, // extract signed <= condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  8. src/syscall/syscall_linux_riscv64.go

    func (r *PtraceRegs) PC() uint64 { return r.Pc }
    
    func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint64(length)
    }
    
    func InotifyInit() (fd int, err error) {
    	return InotifyInit1(0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

        void setVersion(String version);
    
        String getScope();
    
        String getType();
    
        String getClassifier();
    
        boolean hasClassifier();
    
        File getFile();
    
        void setFile(File destination);
    
        String getBaseVersion();
    
        void setBaseVersion(String baseVersion);
    
        String getId();
    
        String getDependencyConflictId();
    
        void addMetadata(ArtifactMetadata metadata);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 09 17:47:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. docs/tr/docs/benchmarks.md

        * Eğer FastAPI'ı karşılaştırıyorsanız, Flask-apispec, NestJS, Molten, vb. gibi veri doğrulama, dönüştürme ve dokümantasyon sağlayan bir web uygulaması frameworkü ile (veya araç setiyle) karşılaştırın....
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 14:10:30 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top