Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,727 for PRIVATE (0.17 sec)

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

          }
        }
        return new MessageDigestHasher(getMessageDigest(prototype.getAlgorithm()), bytes);
      }
    
      private static final class SerializedForm implements Serializable {
        private final String algorithmName;
        private final int bytes;
        private final String toString;
    
        private SerializedForm(String algorithmName, int bytes, String toString) {
          this.algorithmName = algorithmName;
          this.bytes = bytes;
    Java
    - Registered: 2023-10-20 12:43
    - Last Modified: 2022-05-25 20:32
    - 5K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

        /**
         * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports
         * authentication via exchange of private/public keys and private key was used for authentication.
         *
         * @return passphrase of the private key file
         */
        public String getPassphrase() {
            return passphrase;
        }
    
        /**
         * Set the passphrase of the private key file.
         *
    Java
    - Registered: 2023-11-26 03:35
    - Last Modified: 2022-11-22 13:26
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacLogonInfo.java

    @SuppressWarnings ( "javadoc" )
    public class PacLogonInfo {
    
        private Date logonTime;
        private Date logoffTime;
        private Date kickOffTime;
        private Date pwdLastChangeTime;
        private Date pwdCanChangeTime;
        private Date pwdMustChangeTime;
        private short logonCount;
        private short badPasswordCount;
        private String userName;
        private String userDisplayName;
        private String logonScript;
        private String profilePath;
    Java
    - Registered: 2023-11-26 00:10
    - Last Modified: 2018-07-01 13:12
    - 11.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    org/codehaus/plexus/classworlds/realm/ClassRealm.class package org.codehaus.plexus.classworlds.realm; public synchronized class ClassRealm extends java.net.URLClassLoader { private org.codehaus.plexus.classworlds.ClassWorld world; private String id; private java.util.TreeSet imports; private org.codehaus.plexus.classworlds.strategy.Strategy strategy; private ClassRealm parent; public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld, String); public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld,...
    Archive
    - Registered: 2023-11-26 03:35
    - Last Modified: 2007-10-16 20:15
    - 41.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/DenseImmutableTable.java

      private final ImmutableMap<R, Integer> rowKeyToIndex;
      private final ImmutableMap<C, Integer> columnKeyToIndex;
      private final ImmutableMap<R, ImmutableMap<C, V>> rowMap;
      private final ImmutableMap<C, ImmutableMap<R, V>> columnMap;
    
      @SuppressWarnings("Immutable") // We don't modify this after construction.
      private final int[] rowCounts;
    
    Java
    - Registered: 2023-11-24 12:43
    - Last Modified: 2021-07-15 15:41
    - 8.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

     */
    public class DefaultModelBuilderFactory {
    
        private ModelProcessor modelProcessor;
        private ModelValidator modelValidator;
        private ModelNormalizer modelNormalizer;
        private ModelInterpolator modelInterpolator;
        private ModelPathTranslator modelPathTranslator;
        private ModelUrlNormalizer modelUrlNormalizer;
        private SuperPomProvider superPomProvider;
        private InheritanceAssembler inheritanceAssembler;
    Java
    - Registered: 2023-11-26 03:35
    - Last Modified: 2023-09-22 07:25
    - 15.8K bytes
    - Viewed (0)
  7. src/mdo/java/ImmutableCollections.java

            }
    
            @Override
            public int size() {
                return 1;
            }
        }
    
        private static class List2<E> extends AbstractImmutableList<E> {
            private final E element1;
            private final E element2;
    
            private List2(E element1, E element2) {
                this.element1 = element1;
                this.element2 = element2;
            }
    
            @Override
    Java
    - Registered: 2023-11-05 03:35
    - Last Modified: 2023-06-02 11:58
    - 16.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/SipHashFunction.java

        // was some asymmetry so that the initial v0 and v1 differ from v2 and v3.
        private long v0 = 0x736f6d6570736575L;
        private long v1 = 0x646f72616e646f6dL;
        private long v2 = 0x6c7967656e657261L;
        private long v3 = 0x7465646279746573L;
    
        // The number of bytes in the input.
        private long b = 0;
    
        // The final 64-bit chunk includes the last 0 through 7 bytes of m followed by null bytes
    Java
    - Registered: 2023-10-20 12:43
    - Last Modified: 2021-04-20 18:43
    - 5.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

     *
     * @author Anthony Zana
     */
    public class UninterruptiblesTest extends TestCase {
      private static final String EXPECTED_TAKE = "expectedTake";
    
      /** Timeout to use when we don't expect the timeout to expire. */
      private static final long LONG_DELAY_MS = 2500;
    
      private static final long SLEEP_SLACK = 2;
    
      private final TearDownStack tearDownStack = new TearDownStack();
    
    Java
    - Registered: 2023-11-24 12:43
    - Last Modified: 2022-02-09 22:57
    - 30.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

     */
    public class AbstractExecutionThreadServiceTest extends TestCase {
    
      private final TearDownStack tearDownStack = new TearDownStack(true);
      private final CountDownLatch enterRun = new CountDownLatch(1);
      private final CountDownLatch exitRun = new CountDownLatch(1);
    
      private Thread executionThread;
      private Throwable thrownByExecutionThread;
      private final Executor exceptionCatchingExecutor =
          new Executor() {
            @Override
    Java
    - Registered: 2023-11-24 12:43
    - Last Modified: 2023-09-06 17:04
    - 12.7K bytes
    - Viewed (0)
Back to top