Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for setpd (0.04 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java

            assertEquals(basedir, new File(repo.getBasedir()));
        }
    
        @Test
        void testAuthenticationHandling() {
            Server server = new Server();
            server.setId("repository");
            server.setUsername("jason");
            server.setPassword("abc123");
    
            ArtifactRepository repository =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/defs_plan9_arm.go

    //go:nowritebarrierrec
    func (c *sigctxt) pc() uintptr { return uintptr(c.u.pc) }
    
    func (c *sigctxt) sp() uintptr { return uintptr(c.u.sp) }
    func (c *sigctxt) lr() uintptr { return uintptr(c.u.link) }
    
    func (c *sigctxt) setpc(x uintptr)  { c.u.pc = uint32(x) }
    func (c *sigctxt) setsp(x uintptr)  { c.u.sp = uint32(x) }
    func (c *sigctxt) setlr(x uintptr)  { c.u.link = uint32(x) }
    func (c *sigctxt) savelr(x uintptr) { c.u.r0 = uint32(x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/DuplicateHost.java

     */
    public class DuplicateHost extends BsDuplicateHost {
    
        private static final long serialVersionUID = 1L;
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java

    package org.codelibs.fess.crawler.entity;
    
    /**
     * @author shinsuke
     *
     */
    public interface AccessResult<IDTYPE> {
        void init(ResponseData responseData, ResultData resultData);
    
        IDTYPE getId();
    
        void setId(IDTYPE id);
    
        String getSessionId();
    
        void setSessionId(String sessionId);
    
        String getRuleId();
    
        void setRuleId(String ruleId);
    
        String getUrl();
    
        void setUrl(String url);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/AccessToken.java

     */
    public class AccessToken extends BsAccessToken {
    
        private static final long serialVersionUID = 1L;
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestMavenWorkspaceReader.java

                Model m = new Model();
                m.setArtifactId(ARTIFACT_ID);
                m.setGroupId(GROUP_ID);
                m.setVersion(VERSION);
                Repository repository = new Repository();
                repository.setId(REPO_ID);
                repository.setUrl(REPO_URL);
                repository.setLayout(REPO_LAYOUT);
                m.getRepositories().add(repository);
                return m;
            }
            return null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Feb 05 12:17:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/ScheduledJob.java

                job.stopNow();
            }).orElse(() -> {
                throw new JobNotFoundException(this);
            });
        }
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/defs_plan9_amd64.go

    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uintptr { return uintptr(c.u.ip) }
    
    func (c *sigctxt) sp() uintptr { return uintptr(c.u.sp) }
    func (c *sigctxt) lr() uintptr { return uintptr(0) }
    
    func (c *sigctxt) setpc(x uintptr) { c.u.ip = uint64(x) }
    func (c *sigctxt) setsp(x uintptr) { c.u.sp = uint64(x) }
    func (c *sigctxt) setlr(x uintptr) {}
    
    func (c *sigctxt) savelr(x uintptr) {}
    
    func dumpregs(u *ureg) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/exentity/Role.java

        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        @Override
        public String toString() {
            return "Role [name=" + name + "]";
        }
    
        public Map<String, String> getAttributes() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/exentity/Group.java

        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        @Override
        public String toString() {
            return "Group [name=" + name + "]";
        }
    
        public Map<String, String> getAttributes() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top