Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 309 for replay (0.28 sec)

  1. guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

        equivalenceMock.expectHash(group1Item1, 1);
        equivalenceMock.expectHash(group1Item2, 1);
        equivalenceMock.expectHash(group2Item1, 2);
        equivalenceMock.expectHash(group2Item2, 2);
    
        equivalenceMock.replay();
    
        tester
            .addEquivalenceGroup(group1Item1, group1Item2)
            .addEquivalenceGroup(group2Item1, group2Item2)
            .test();
      }
    
      public void testTest_symmetric() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

        equivalenceMock.expectHash(group1Item1, 1);
        equivalenceMock.expectHash(group1Item2, 1);
        equivalenceMock.expectHash(group2Item1, 2);
        equivalenceMock.expectHash(group2Item2, 2);
    
        equivalenceMock.replay();
    
        tester
            .addEquivalenceGroup(group1Item1, group1Item2)
            .addEquivalenceGroup(group2Item1, group2Item2)
            .test();
      }
    
      public void testTest_symmetric() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/NegTokenInit.java

     */
    @SuppressWarnings ( "javadoc" )
    public class NegTokenInit extends SpnegoToken {
    
        public static final int DELEGATION = 0x80;
        public static final int MUTUAL_AUTHENTICATION = 0x40;
        public static final int REPLAY_DETECTION = 0x20;
        public static final int SEQUENCE_CHECKING = 0x10;
        public static final int ANONYMITY = 0x08;
        public static final int CONFIDENTIALITY = 0x04;
        public static final int INTEGRITY = 0x02;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/Kerb5Context.java

            if ( this.gssContext.getMutualAuthState() ) {
                contextFlags |= NegTokenInit.MUTUAL_AUTHENTICATION;
            }
            if ( this.gssContext.getReplayDetState() ) {
                contextFlags |= NegTokenInit.REPLAY_DETECTION;
            }
            if ( this.gssContext.getSequenceDetState() ) {
                contextFlags |= NegTokenInit.SEQUENCE_CHECKING;
            }
            if ( this.gssContext.getAnonymityState() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        /**
         * 
         */
        public static final int SMB2_FLAGS_DFS_OPERATIONS = 0x10000000;
        /**
         * 
         */
        public static final int SMB2_FLAGS_REPLAY_OPERATION = 0x20000000;
    
        private int command;
        private int flags;
        private int length, headerStart, wordCount, byteCount;
    
        private byte[] signature = new byte[16];
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        rateLimiter.acquire(1); // R1.00, to repay previous
    
        rateLimiter.setRate(2.0); // update the rate!
    
        rateLimiter.acquire(1); // R1.00, to repay previous (the previous was under the old rate!)
        rateLimiter.acquire(2); // R0.50, to repay previous (now the rate takes effect)
        rateLimiter.acquire(4); // R1.00, to repay previous
        rateLimiter.acquire(1); // R2.00, to repay previous
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

        /**
         * Deploy an artifact from a particular file.
         *
         * @param source the file to deploy
         * @param artifact the artifact definition
         * @param deploymentRepository the repository to deploy to
         * @param localRepository the local repository to install into
         * @throws ArtifactDeploymentException if an error occurred deploying the artifact
         */
        void deploy(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployer.java

         * @throws ArtifactDeployerException if the deployment failed
         */
        void deploy(@Nonnull ArtifactDeployerRequest request);
    
        /**
         * @param session the repository session
         * @param repository the repository to deploy to
         * @param artifacts the collection of artifacts to deploy
         * @throws ArtifactDeployerException if the deployment failed
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/WarLifecycleMappingProvider.java

            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
            "deploy", "org.apache.maven.plugins:maven-deploy-plugin:" + DEPLOY_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: war
    
        @Inject
        public WarLifecycleMappingProvider() {
            super(BINDINGS);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/LenientSerializableTester.java

    import java.util.Set;
    
    /**
     * Variant of {@link SerializableTester} that does not require the reserialized object's class to be
     * identical to the original.
     *
     * @author Chris Povirk
     */
    /*
     * The whole thing is really @GwtIncompatible, but GwtJUnitConvertedTestModule doesn't have a
     * parameter for non-GWT, non-test files, and it didn't seem worth adding one for this unusual case.
     */
    @GwtCompatible(emulated = true)
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Aug 04 15:33:27 GMT 2020
    - 2.5K bytes
    - Viewed (0)
Back to top