Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 233 for getPath (0.13 sec)

  1. mockwebserver-deprecated/api/mockwebserver.api

    	public final fun getHeader (Ljava/lang/String;)Ljava/lang/String;
    	public final fun getHeaders ()Lokhttp3/Headers;
    	public final fun getMethod ()Ljava/lang/String;
    	public final fun getPath ()Ljava/lang/String;
    	public final fun getRequestLine ()Ljava/lang/String;
    	public final fun getRequestUrl ()Lokhttp3/HttpUrl;
    	public final fun getSequenceNumber ()I
    	public final fun getTlsVersion ()Lokhttp3/TlsVersion;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. architecture/standards/0006-use-of-provider-apis-in-gradle.md

        }
    }
    ```
    
    You should prefer to use managed types when possible. 
    
    #### Identity information 
    
    This is an inappropriate use of lazy types:
    
    ```groovy
    class Example {
        Provider<String> getPath() {
            return project.provider(() -> path)
        }
    }
    ```
    
    Like above, this is an immutable part of the identity of the domain object and cannot be changed.
    
    ### Properties in entirely new classes
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 15 20:00:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NetworkExplorer.java

            ServletOutputStream out = resp.getOutputStream();
            String url;
            int n;
            try ( SmbFileInputStream in = new SmbFileInputStream(file) ) {
                url = file.getLocator().getPath();
                resp.setContentType("text/plain");
                resp.setContentType(URLConnection.guessContentTypeFromName(url));
                resp.setHeader("Content-Length", file.length() + "");
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

                }
            } catch (final IOException e) {
                throw new CrawlingAccessException("Could not access " + file.getPath(), e);
            }
        }
    
        protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) {
            if (logger.isDebugEnabled()) {
                logger.debug("SID:{}", sid);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

            try {
                LOGGER.info("Copying {} to project local repository", artifact);
                Files.createDirectories(target.getParent());
                Files.copy(
                        artifact.getPath(),
                        target,
                        StandardCopyOption.REPLACE_EXISTING,
                        StandardCopyOption.COPY_ATTRIBUTES);
            } catch (IOException e) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                logger.debug("Processing thumbnail: {}", entity);
            }
            final String generatorName = entity.getGenerator();
            try {
                final File outputFile = new File(baseDir, entity.getPath());
                final File noImageFile = new File(outputFile.getAbsolutePath() + NOIMAGE_FILE_SUFFIX);
                if (!noImageFile.isFile() || systemHelper.getCurrentTimeAsLong() - noImageFile.lastModified() > noImageExpired) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            String url, type;
            int n;
    
            try (SmbFileInputStream in = new SmbFileInputStream(file);
                    ServletOutputStream out = resp.getOutputStream()) {
                url = file.getPath();
    
                resp.setContentType( "text/plain" );
    
                if(( n = url.lastIndexOf( '.' )) > 0 &&
                        ( type = url.substring( n + 1 )) != null &&
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                throw problems.newModelBuildingException();
            }
    
            if (modelSource instanceof FileModelSource) {
                model = model.withPomFile(((FileModelSource) modelSource).getPath());
            }
    
            Model retModel = new Model(model);
    
            problems.setSource(retModel);
    
            modelValidator.validateFileModel(retModel, request, problems);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/ClassPath.java

        try {
          return new File(url.toURI()); // Accepts escaped characters like %20.
        } catch (URISyntaxException e) { // URL.toURI() doesn't escape chars.
          return new File(url.getPath()); // Accepts non-escaped chars like space.
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
        public final void setErrorCode ( int errorCode ) {
            this.errorCode = errorCode;
        }
    
    
        /**
         * @return the path
         */
        @Override
        public final String getPath () {
            return this.path;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.RequestWithPath#getFullUNCPath()
         */
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
Back to top