Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1381 - 1390 of 2,155 for minval (0.07 sec)

  1. guava/src/com/google/common/hash/Crc32cHashFunction.java

     * polynomial for this checksum is {@code 0x11EDC6F41}.
     *
     * @author Kurt Alfred Kluever
     */
    @Immutable
    @ElementTypesAreNonnullByDefault
    final class Crc32cHashFunction extends AbstractHashFunction {
      static final HashFunction CRC_32_C = new Crc32cHashFunction();
    
      @Override
      public int bits() {
        return 32;
      }
    
      @Override
      public Hasher newHasher() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndXResponse.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.io.UnsupportedEncodingException;
    
    class SmbComTreeConnectAndXResponse extends AndXServerMessageBlock {
    
        private static final int SMB_SUPPORT_SEARCH_BITS = 0x0001;
        private static final int SMB_SHARE_IS_IN_DFS     = 0x0002;
    
        boolean supportSearchBits, shareIsInDfs;
        String service, nativeFileSystem = "";
    
        SmbComTreeConnectAndXResponse( ServerMessageBlock andx ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ProtoLogger.java

     * Supports only two levels: ERROR and WARNING, that is emitted to STDERR and STDOUT.
     */
    public class ProtoLogger implements Logger {
    
        private final PrintWriter out;
        private final PrintWriter err;
    
        public ProtoLogger() {
            this(null, null);
        }
    
        public ProtoLogger(@Nullable OutputStream out, @Nullable OutputStream err) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

     */
    @GwtIncompatible
    public final class FeatureUtil {
      /** A cache of annotated objects (typically a Class or Method) to its set of annotations. */
      private static final Map<AnnotatedElement, List<Annotation>> annotationCache = new HashMap<>();
    
      private static final Map<Class<?>, TesterRequirements> classTesterRequirementsCache =
          new HashMap<>();
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 05 22:05:05 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/test/java/org/apache/maven/api/plugin/descriptor/another/ExtendedPluginDescriptorTest.java

        /**
         * A subclass of the generated class {@link PluginDescriptor} that adds an additional field.
         */
        public static class ExtendedPluginDescriptor extends PluginDescriptor {
    
            private final String additionalField;
    
            protected ExtendedPluginDescriptor(Builder builder) {
                super(builder);
                this.additionalField = builder.additionalField;
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 07:05:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/forked/DefaultForkedMavenInvokerRequest.java

    /**
     * Maven execution request.
     */
    public class DefaultForkedMavenInvokerRequest extends DefaultMavenInvokerRequest<MavenOptions>
            implements ForkedMavenInvokerRequest {
        private final List<String> jvmArguments;
    
        @SuppressWarnings("ParameterNumber")
        public DefaultForkedMavenInvokerRequest(
                ParserRequest parserRequest,
                Path cwd,
                Path installationDirectory,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ListsTest.java

        }
    
        private static final long serialVersionUID = 0;
      }
    
      private static final List<Integer> SOME_LIST = Lists.newArrayList(1, 2, 3, 4);
    
      private static final List<Integer> SOME_SEQUENTIAL_LIST = Lists.newLinkedList(asList(1, 2, 3, 4));
    
      private static final List<String> SOME_STRING_LIST = asList("1", "2", "3", "4");
    
      private static final Function<Number, String> SOME_FUNCTION = new SomeFunction();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ListsTest.java

        }
    
        private static final long serialVersionUID = 0;
      }
    
      private static final List<Integer> SOME_LIST = Lists.newArrayList(1, 2, 3, 4);
    
      private static final List<Integer> SOME_SEQUENTIAL_LIST = Lists.newLinkedList(asList(1, 2, 3, 4));
    
      private static final List<String> SOME_STRING_LIST = asList("1", "2", "3", "4");
    
      private static final Function<Number, String> SOME_FUNCTION = new SomeFunction();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/SubtypeTester.java

        boolean suppressGetSupertype() default false;
      }
    
      private @Nullable Method method = null;
    
      /** Call this in a {@link TestSubtype} public method asserting subtype relationship. */
      final <T> T isSubtype(T sub) {
        Type returnType = method.getGenericReturnType();
        Type paramType = getOnlyParameterType();
        TestSubtype spec = method.getAnnotation(TestSubtype.class);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MultimapsTest.java

          return new LinkedList<>();
        }
    
        private static final long serialVersionUID = 0;
      }
    
      public void testNewMultimapWithCollectionRejectingNegativeElements() {
        CountingSupplier<Set<Integer>> factory =
            new SetSupplier() {
              @Override
              public Set<Integer> getImpl() {
                final Set<Integer> backing = super.getImpl();
                return new ForwardingSet<Integer>() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top