Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,493 for implements (0.69 sec)

  1. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            }
    
            public Function<?, ?> getLastFunction() {
                return lastFunction;
            }
        }
    
        // Inner class for test credential
        private static class TestLoginCredential implements LoginCredential {
            private final String username;
            private final String password;
    
            public TestLoginCredential(String username, String password) {
                this.username = username;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java

        addCallback(f, callback, directExecutor());
      }
    
      private class CountingSameThreadExecutor implements Executor {
        int runCount = 0;
    
        @Override
        public void execute(Runnable command) {
          command.run();
          runCount++;
        }
      }
    
      private final class MockCallback implements FutureCallback<String> {
        @Nullable private String value = null;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

        }
    
        /**
         * Basic implementation of {@link Source} that uses a {@link Path} as the underlying source.
         */
        static class PathSource implements Source {
            @Nonnull
            protected final Path path;
    
            @Nonnull
            protected final String location;
    
            /**
             * Constructs a new PathSource with the specified path.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. cmd/metrics-v3-types.go

    // For metrics with a `bucket` dimension, a list of buckets argument is required
    // to collect the metrics.
    //
    // It implements the prometheus.Collector interface for metric groups without a
    // bucket dimension. For metric groups with a bucket dimension, use the
    // `GetBucketCollector` method to get a `BucketCollector` that implements the
    // prometheus.Collector interface.
    type MetricsGroup struct {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Feb 28 19:33:08 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/converter/NumberConverter.java

    import org.codelibs.core.exception.ParseRuntimeException;
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * Converter for numbers.
     *
     * @author higa
     */
    public class NumberConverter implements Converter {
    
        /**
         * The pattern for numbers.
         */
        protected String pattern;
    
        /**
         * Constructs an instance.
         *
         * @param pattern
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/converter/TimestampConverter.java

    import org.codelibs.core.convert.StringConversionUtil;
    import org.codelibs.core.convert.TimestampConversionUtil;
    
    /**
     * Converter for timestamps.
     *
     * @author higa
     */
    public class TimestampConverter implements Converter {
    
        /**
         * The pattern for the date and time.
         */
        protected String pattern;
    
        /**
         * Constructs an instance.
         *
         * @param pattern
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmChallenge.java

    import java.io.Serializable;
    
    import jcifs.netbios.UniAddress;
    import jcifs.util.Hexdump;
    
    /**
     *
     *
     * <p>This class is intended for internal use.</p>
     */
    public final class NtlmChallenge implements Serializable {
    
        /**
         *
         */
        private static final long serialVersionUID = 2484853610174848092L;
    
        /**
         * Challenge
         */
        public byte[] challenge;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.handler;
    
    public class ArtifactHandlerMock implements ArtifactHandler {
    
        private String extension, directory, classifier, packaging, language;
        private boolean includesDependencies, addedToClasspath;
    
        public void setExtension(String extension) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java

    import org.apache.maven.artifact.versioning.VersionRange;
    import org.codehaus.plexus.logging.Logger;
    
    /**
     * Send resolution warning events to the warning log.
     *
     */
    @Deprecated
    public class WarningResolutionListener implements ResolutionListener {
        private Logger logger;
    
        public WarningResolutionListener(Logger logger) {
            this.logger = logger;
        }
    
        @Override
        public void testArtifact(Artifact node) {}
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java

        }
        derivedFeatures.remove(CollectionSize.ZERO);
        return derivedFeatures;
      }
    
      private static final class AsMapGenerator<K, V, M extends Multimap<K, V>>
          implements TestMapGenerator<K, Collection<V>>, DerivedGenerator {
        private final OneSizeTestContainerGenerator<M, Entry<K, V>> multimapGenerator;
    
        AsMapGenerator(OneSizeTestContainerGenerator<M, Entry<K, V>> multimapGenerator) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.8K bytes
    - Viewed (0)
Back to top