Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for 102 (0.02 sec)

  1. guava-tests/test/com/google/common/math/QuantilesTest.java

       * tests are divided into three sections:
       * 1. Tests on a hardcoded dataset for chains starting with median(), quartiles(), and scale(10);
       * 2. Tests on hardcoded datasets include non-finite values for chains starting with scale(10);
       * 3. Tests on a mechanically generated dataset for chains starting with percentiles();
       * 4. Tests of illegal usages of the API.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java

            ServerMessageBlock mockResponse2 = mock(ServerMessageBlock.class);
            digest.sign(data, 0, data.length, mockRequest2, mockResponse2);
            verify(mockRequest2).setSignSeq(102);
            verify(mockResponse2).setSignSeq(103);
        }
    
        @Test
        @DisplayName("Test partial update")
        void testPartialUpdate() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java

            byte[] buffer = new byte[1024];
            buffer[33] = 34; // wordCount for extended response
            buffer[34] = (byte) 0xFF; // andxCommand
            SMBUtil.writeInt2(20, buffer, 102); // byteCount
    
            int length = testBlock.decode(buffer, 0);
    
            assertTrue(length > 0);
            // wordCount is set to 34 + 8 = 42 in the implementation for extended response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  4. docs/smb3-features/01-smb3-lease-design.md

        } catch (TimeoutException e) {
            // Force lease release if break handling times out
            releaseLease(key);
            log.warn("Lease break timeout for key: {}", key);
        }
    }
    ```
    
    ### 10.2 Fallback to Oplocks
    ```java
    if (!context.getConfig().isUseLeases() || !session.supports(SMB3_0)) {
        // Fall back to traditional oplock mechanism
        useOplockInstead();
    }
    ```
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. android/pom.xml

                </configuration>
              </plugin>
              <plugin>
                <groupId>com.diamondq.maven</groupId>
                <artifactId>javahome-resolver-maven-plugin</artifactId>
                <version>1.0.2</version>
                <executions>
                  <execution>
                    <id>resolve-java-11</id>
                    <phase>initialize</phase>
                    <goals>
                      <goal>resolve</goal>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  6. pom.xml

                </configuration>
              </plugin>
              <plugin>
                <groupId>com.diamondq.maven</groupId>
                <artifactId>javahome-resolver-maven-plugin</artifactId>
                <version>1.0.2</version>
                <executions>
                  <execution>
                    <id>resolve-java-11</id>
                    <phase>initialize</phase>
                    <goals>
                      <goal>resolve</goal>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java

                .put("b", 1)
                .build();
        multimap = SerializableTester.reserialize(multimap);
        assertThat(multimap.keySet()).containsExactly("b", "a").inOrder();
        assertThat(multimap.get("a")).containsExactly(10, 2).inOrder();
        assertEquals(
            Ordering.usingToString(), ((ImmutableSortedSet<Integer>) multimap.get("a")).comparator());
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java

                .put("b", 1)
                .build();
        multimap = SerializableTester.reserialize(multimap);
        assertThat(multimap.keySet()).containsExactly("b", "a").inOrder();
        assertThat(multimap.get("a")).containsExactly(10, 2).inOrder();
        assertEquals(
            Ordering.usingToString(), ((ImmutableSortedSet<Integer>) multimap.get("a")).comparator());
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 28.7K bytes
    - Viewed (0)
  9. docs/smb3-features/02-persistent-handles-design.md

                            return true;
                        }
                    }
                    return false;
                }
            };
        }
    }
    ```
    
    ### 10.2 Batch Handle Operations
    ```java
    public class BatchHandleOperations {
        public void reconnectMultipleHandles(List<HandleInfo> handles) {
            List<CompletableFuture<Void>> futures = new ArrayList<>();
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContextTest.java

                SMBUtil.writeInt2(0x02, buffer, 6);
                SMBUtil.writeInt2(0x03, buffer, 8);
                byte[] salt = { 0x0A, 0x0B };
                System.arraycopy(salt, 0, buffer, 10, 2);
    
                PreauthIntegrityNegotiateContext context = new PreauthIntegrityNegotiateContext();
                int bytesRead = context.decode(buffer, 0, 12);
    
                assertEquals(12, bytesRead);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 34K bytes
    - Viewed (0)
Back to top