Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 498 for setFid (0.18 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java

        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.UrlQueue#getId()
         */
        @Override
        public IDTYPE getId() {
            return id;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.UrlQueue#setId(IDTYPE)
         */
        @Override
        public void setId(final IDTYPE id) {
            this.id = id;
        }
    
        /*
         * (non-Javadoc)
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

    
        /**
         * @param next
         * @return whether to allow chaining
         */
        boolean allowChain ( CommonServerMessageBlockRequest next );
    
    
        /**
         * @param t
         */
        void setTid ( int t );
    
    
        /**
         * 
         * @return custom response timeout for this request
         */
        Integer getOverrideTimeout ();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java

                    accessResult.setAccessResultData(accessResultData);
                }
                accessResultData.setId(accessResult.getId());
    
                final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(accessResult.getSessionId());
                if (arMap.containsKey(accessResult.getUrl())) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_NTP_ADJTIME          = 176 // { int|sys||ntp_adjtime(struct timex *tp); }
    	SYS_SETGID               = 181 // { int|sys||setgid(gid_t gid); }
    	SYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }
    	SYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }
    	SYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_netbsd_arm.go

    	SYS_NTP_ADJTIME          = 176 // { int|sys||ntp_adjtime(struct timex *tp); }
    	SYS_SETGID               = 181 // { int|sys||setgid(gid_t gid); }
    	SYS_SETEGID              = 182 // { int|sys||setegid(gid_t egid); }
    	SYS_SETEUID              = 183 // { int|sys||seteuid(uid_t euid); }
    	SYS_PATHCONF             = 191 // { long|sys||pathconf(const char *path, int name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  6. src/syscall/exec_freebsd.go

    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/testdata/main4.c

    	sigset_t mask;
    	int i;
    	struct timespec ts;
    
    	verbose = argc > 2;
    	setvbuf(stdout, NULL, _IONBF, 0);
    
    	// Call setsid so that we can use kill(0, SIGIO) below.
    	// Don't check the return value so that this works both from
    	// a job control shell and from a shell script.
    	setsid();
    
    	if (verbose) {
    		fprintf(stderr, "calling sigaction\n");
    	}
    
    	memset(&sa, 0, sizeof sa);
    	sa.sa_sigaction = ioHandler;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

        private ProfilesConversionUtils() {}
    
        public static Profile convertFromProfileXmlProfile(org.apache.maven.profiles.Profile profileXmlProfile) {
            Profile profile = new Profile();
    
            profile.setId(profileXmlProfile.getId());
    
            profile.setSource("profiles.xml");
    
            org.apache.maven.profiles.Activation profileActivation = profileXmlProfile.getActivation();
    
            if (profileActivation != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_freebsd_386.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setegid(egid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETEGID, uintptr(egid), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Seteuid(euid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETEUID, uintptr(euid), 0, 0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_netbsd_386.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setgid(gid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETGID, uintptr(gid), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setpgid(pid int, pgid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top