Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 766 for setPath (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ThumbnailQueueDbm.java

                    (et, vl) -> ((ThumbnailQueue) et).setGenerator(DfTypeUtil.toString(vl)), "generator");
            setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getPath(), (et, vl) -> ((ThumbnailQueue) et).setPath(DfTypeUtil.toString(vl)),
                    "path");
            setupEpg(_epgMap, et -> ((ThumbnailQueue) et).getTarget(), (et, vl) -> ((ThumbnailQueue) et).setTarget(DfTypeUtil.toString(vl)),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

         * @return a URI guaranteed to have a trailing slash in the path
         */
        private static URI withTrailingSlash(URI uri) {
            if (uri.getPath().endsWith("/")) {
                return uri;
            }
            try {
                return new URIBuilder(uri).setPath(uri.getPath() + "/").build();
            } catch (URISyntaxException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

                    // I want to restore it before retrying. request.reset()
                    // restores almost everything that was modified, except the path.
                    rpath.setPath(savedPath);
                    rpath.setFullUNCPath(rpath.getDomain(), rpath.getServer(), savedFullPath);
                }
                if ( response != null ) {
                    response.reset();
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultFileCopyDetails.java

            this.relativePath = path;
        }
    
        @Override
        public void setName(String name) {
            relativePath = getRelativePath().replaceLastName(name);
        }
    
        @Override
        public void setPath(String path) {
            relativePath = RelativePath.parse(getRelativePath().isFile(), path);
        }
    
        boolean isExcluded() {
            return excluded;
        }
    
        @Override
        public void exclude() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

            }
    
            @Override
            public void setName(String name) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public void setPath(String path) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public void setRelativePath(RelativePath path) {
                throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

            this.exported = false;
            this.accessRules = new LinkedHashSet<>();
            this.entryAttributes = new LinkedHashMap<>();
        }
    
        public String getPath() {
            return path;
        }
    
        public void setPath(String path) {
            this.path = path;
        }
    
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            cookie.setHttpOnly(httpOnly);
            if (StringUtil.isNotBlank(cookieDomain)) {
                cookie.setDomain(cookieDomain);
            }
            if (StringUtil.isNotBlank(cookiePath)) {
                cookie.setPath(cookiePath);
            }
            if (cookieSecure != null) {
                cookie.setSecure(cookieSecure);
            }
            LaResponseUtil.getResponse().addCookie(cookie);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setGenerator(DfTypeUtil.toString(source.get("generator")));
                result.setPath(DfTypeUtil.toString(source.get("path")));
                result.setTarget(DfTypeUtil.toString(source.get("target")));
                result.setThumbnailId(DfTypeUtil.toString(source.get("thumbnail_id")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    		path:         root,
    		knownFormats: formats,
    		options:      options,
    	})
    }
    
    var _ validate.ValueValidator = (&ratchetingValueValidator{})
    
    func (r ratchetingValueValidator) SetPath(path string) {
    	// Do nothing
    	// Unused by kube-openapi
    }
    
    func (r ratchetingValueValidator) Applies(source interface{}, valueKind reflect.Kind) bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                private final Map<Artifact, Path> paths = new ConcurrentHashMap<>();
    
                @Override
                public Optional<Path> getPath(Artifact artifact) {
                    return Optional.ofNullable(paths.get(artifact));
                }
    
                @Override
                public void setPath(Artifact artifact, Path path) {
                    paths.put(artifact, path);
                }
            };
        }
    
        @Provides
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top