Search Options

Results per page
Sort
Preferred Languages
Advance

Results 4361 - 4370 of 6,120 for stringy (0.05 sec)

  1. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

        @CheckForNull
        Thread getOwner() {
          return super.getExclusiveOwnerThread();
        }
    
        @Override
        public String toString() {
          return task.toString();
        }
      }
    
      @Override
      public final String toString() {
        Runnable state = get();
        String result;
        if (state == DONE) {
          result = "running=[DONE]";
        } else if (state instanceof Blocker) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/MoreFilesFileTraverserTest.java

            .containsExactly(rootDir, fileA, fileB, dir1, dir2);
      }
    
      @CanIgnoreReturnValue
      private Path newDir(String name) throws IOException {
        Path dir = rootDir.resolve(name);
        Files.createDirectory(dir);
        return dir;
      }
    
      @CanIgnoreReturnValue
      private Path newFile(String name) throws IOException {
        Path file = rootDir.resolve(name);
        MoreFiles.touch(file);
        return file;
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 09 19:30:52 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/fscc/FileBasicInfo.java

            SMBUtil.writeInt4(this.attributes, dst, dstIndex);
            dstIndex += 4;
            dstIndex += 4;
            return dstIndex - start;
        }
    
    
        @Override
        public String toString () {
            return new String(
                "SmbQueryFileBasicInfo[" + "createTime=" + new Date(this.createTime) + ",lastAccessTime=" + new Date(this.lastAccessTime)
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  4. compat/maven-model/src/test/java/org/apache/maven/model/v4/Xpp3DomPerfTest.java

                }
            }
            return i;
        }
    
        /**
         * <p>main.</p>
         *
         * @param args a {@link String} object.
         * @throws org.openjdk.jmh.runner.RunnerException if any.
         */
        public static void main(String... args) throws RunnerException {
            Options opts = new OptionsBuilder().forks(1).build();
            new Runner(opts).run();
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java

        protected int maxRetryCount = 5;
    
        protected long retryInterval = 500;
    
        protected RequestListener listener;
    
        @Override
        public void setInitParameterMap(final Map<String, Object> params) {
            client.setInitParameterMap(params);
        }
    
        @Override
        public ResponseData execute(final RequestData request) {
            if (listener != null) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/AbstractNetwork.java

      }
    
      @Override
      public final int hashCode() {
        return edgeIncidentNodesMap(this).hashCode();
      }
    
      /** Returns a string representation of this network. */
      @Override
      public String toString() {
        return "isDirected: "
            + isDirected()
            + ", allowsParallelEdges: "
            + allowsParallelEdges()
            + ", allowsSelfLoops: "
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/AbstractNetwork.java

      }
    
      @Override
      public final int hashCode() {
        return edgeIncidentNodesMap(this).hashCode();
      }
    
      /** Returns a string representation of this network. */
      @Override
      public String toString() {
        return "isDirected: "
            + isDirected()
            + ", allowsParallelEdges: "
            + allowsParallelEdges()
            + ", allowsSelfLoops: "
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

            }
            dictionaryManager.addCreator(this);
        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new ProtwordsFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

            }
            dictionaryManager.addCreator(this);
        }
    
        @Override
        protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
            return new SynonymFile(id, path, timestamp).manager(dictionaryManager);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverFactory.java

     * @since 3.0
     */
    @Deprecated
    public interface ConflictResolverFactory {
        // constants --------------------------------------------------------------
    
        /** The plexus role for this component. */
        String ROLE = ConflictResolverFactory.class.getName();
    
        // methods ----------------------------------------------------------------
    
        /**
         * Gets a conflict resolver of the specified type.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top