Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Flarity (0.18 sec)

  1. src/main/java/jcifs/util/Crypto.java

                throw new CIFSUnsupportedCryptoException(e);
            }
        }
    
    
        /**
         * @param key
         *            7-byte "raw" DES key
         * @return 8-byte DES key with parity
         */
        static byte[] des7to8 ( byte[] key ) {
            byte key8[] = new byte[8];
            key8[ 0 ] = (byte) ( key[ 0 ] & 0xFE );
            key8[ 1 ] = (byte) ( ( key[ 0 ] << 7 ) | ( ( key[ 1 ] & 0xFF ) >>> 1 ) );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Aug 17 17:34:29 GMT 2021
    - 5.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/HashingTest.java

                .addEqualityGroup(hashFunction2)
                .testEquals();
    
            assertEquals(hashFunction1a.toString(), hashFunction1b.toString());
          }
        }
      }
    
      // Parity tests taken from //util/hash/hash_unittest.cc
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Optional.java

     * reference. It allows you to represent "a {@code T} that must be present" and a "a {@code T} that
     * might be absent" as two distinct types in your program, which can aid clarity.
     *
     * <p>Some uses of this class include
     *
     * <ul>
     *   <li>As a method return type, as an alternative to returning {@code null} to indicate that no
     *       value was available
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Verify.java

     *   <li>Use of {@link java.util.Objects#requireNonNull(Object)} is generally discouraged, since
     *       {@link #verifyNotNull(Object)} and {@link Preconditions#checkNotNull(Object)} perform the
     *       same function with more clarity.
     * </ul>
     *
     * <h3>Warning about performance</h3>
     *
     * <p>Remember that parameter values for message construction must all be computed eagerly, and
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 18.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/hash/HashingTest.java

                .addEqualityGroup(hashFunction2)
                .testEquals();
    
            assertEquals(hashFunction1a.toString(), hashFunction1b.toString());
          }
        }
      }
    
      // Parity tests taken from //util/hash/hash_unittest.cc
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorRequest.java

                    this.dependencies.add(dependency);
                }
                return this;
            }
    
            /**
             * Sets the dependency management to apply to transitive dependencies. To clarify, this management does not
             * apply to
             * the direct dependencies of the root node.
             *
             * @param managedDependencies the dependency management, may be {@code null}
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Verify.java

     *   <li>Use of {@link java.util.Objects#requireNonNull(Object)} is generally discouraged, since
     *       {@link #verifyNotNull(Object)} and {@link Preconditions#checkNotNull(Object)} perform the
     *       same function with more clarity.
     * </ul>
     *
     * <h3>Warning about performance</h3>
     *
     * <p>Remember that parameter values for message construction must all be computed eagerly, and
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 18.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

       */
      private static boolean validatePart(String part, boolean isFinalPart) {
    
        // These tests could be collapsed into one big boolean expression, but
        // they have been left as independent tests for clarity.
    
        if (part.length() < 1 || part.length() > MAX_DOMAIN_PART_LENGTH) {
          return false;
        }
    
        /*
         * GWT claims to support java.lang.Character's char-classification methods, but it actually only
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

                String path = ( (RequestWithPath) req ).getFullUNCPath();
                checkReferral(resp, path, ( (RequestWithPath) req ));
                // checkReferral always throws and exception but put break here for clarity
                break;
            case NtStatus.NT_STATUS_BUFFER_OVERFLOW:
                if ( resp instanceof Smb2ReadResponse ) {
                    break;
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

          SortedSetMultimap<K, V> multimap) {
        return (Map<K, SortedSet<V>>) (Map<K, ?>) multimap.asMap();
      }
    
      /**
       * Returns {@link Multimap#asMap multimap.asMap()}. This is provided for parity with the other
       * more strongly-typed {@code asMap()} implementations.
       *
       * @since 15.0
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
Back to top