Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Override (0.06 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

        public CIFSContext getTransportContext() {
            return this.getContext();
        }
    
        @Override
        public CIFSContext getContext() {
            return this.transportContext;
        }
    
        @Override
        public SmbResourceLocator getLocator() {
            return this.fileLocator;
        }
    
        @Override
        public SmbResource resolve(final String name) throws CIFSException {
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                @Override
                public void onResponse(final RefreshResponse response) {
                    if (logger.isDebugEnabled()) {
                        logger.debug(() -> "Refreshed " + stream(indices).get(stream -> stream.collect(Collectors.joining(", "))));
                    }
                }
    
                @Override
                public void onFailure(final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        @Override
        public int getHash() {
          return hash;
        }
    
        @Override
        public K getKey() {
          return key;
        }
    
        private long accessTime = Long.MAX_VALUE;
    
        @Override
        public long getAccessTime() {
          return accessTime;
        }
    
        @Override
        public void setAccessTime(long time) {
          this.accessTime = time;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

            object : RequestBody() {
              override fun contentLength(): Long = body.utf8Size()
    
              override fun contentType(): MediaType? = null
    
              override fun writeTo(sink: BufferedSink) {
                sink.writeUtf8(body)
              }
            }
        },
    
        END_OF_STREAM {
          override fun setBody(
            response: MockResponse.Builder,
            content: Buffer?,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

            body =
              object : RequestBody() {
                var attempt = 0
    
                override fun contentType(): MediaType? = null
    
                override fun writeTo(sink: BufferedSink) {
                  sink.writeUtf8("attempt " + attempt++)
                }
    
                override fun isOneShot(): Boolean = true
              },
          )
        val response = client.newCall(request).execute()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

            TrustedListenableFutureTask.create(
                new Callable<V>() {
                  @Override
                  @ParametricNullness
                  public V call() throws Exception {
                    return callable.call(closeables.closer);
                  }
    
                  @Override
                  public String toString() {
                    return callable.toString();
                  }
                });
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 97.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ClosingFuture.java

            TrustedListenableFutureTask.create(
                new Callable<V>() {
                  @Override
                  @ParametricNullness
                  public V call() throws Exception {
                    return callable.call(closeables.closer);
                  }
    
                  @Override
                  public String toString() {
                    return callable.toString();
                  }
                });
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 98.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

         */
        @Override
        public long getDate() {
            try {
                return lastModified();
            } catch (final SmbException se) {}
            return 0L;
        }
    
        /**
         * This URLConnection method just returns the result of {@code lastModified}.
         *
         * @return the last modified data as milliseconds since Jan 1, 1970
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

            id.append( getPackaging() );
            id.append( ":" );
            id.append( ( getVersion() == null ) ? "[inherited]" : getVersion() );
    
            return id.toString();
        }
    
        @Override
        public String toString() {
            return getId();
        }
    
        public boolean isChildProjectUrlInheritAppendPath() {
            return getDelegate().isChildProjectUrlInheritAppendPath();
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

          object : ForwardingFileSystem(fileSystem) {
            override fun onPathParameter(
              path: Path,
              functionName: String,
              parameterName: String,
            ): Path {
              events.add("$functionName:$path")
              return path
            }
    
            override fun onPathResult(
              path: Path,
              functionName: String,
            ): Path {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
Back to top