Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 4,230 for new1 (0.02 sec)

  1. android/guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

      private static final Random randomSource = new Random(314159265358979L);
      private static final long[] longs = new long[ARRAY_SIZE];
      private static final long[] divisors = new long[ARRAY_SIZE];
      private static final String[] decimalStrings = new String[ARRAY_SIZE];
      private static final String[] binaryStrings = new String[ARRAY_SIZE];
      private static final String[] hexStrings = new String[ARRAY_SIZE];
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/SmbNegotiationRequestTest.java

        @DisplayName("Test different implementations can have different behaviors")
        void testDifferentImplementations() {
            // Given
            SmbNegotiationRequest enforcedRequest = new TestSmbNegotiationRequest(true);
            SmbNegotiationRequest notEnforcedRequest = new TestSmbNegotiationRequest(false);
    
            // When & Then
            assertTrue(enforcedRequest.isSigningEnforced(), "Enforced request should return true");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java

            // Test with multiple terms in default field
            PhraseQuery.Builder builder = new PhraseQuery.Builder();
            builder.add(new Term(Constants.DEFAULT_FIELD, "hello"));
            builder.add(new Term(Constants.DEFAULT_FIELD, "world"));
            PhraseQuery phraseQuery = builder.build();
    
            QueryContext context = new QueryContext("test", false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            String componentName1 = "dataSource";
            ContainerNotAvailableException exception1 = new ContainerNotAvailableException(componentName1, new RuntimeException());
            assertEquals(componentName1, exception1.getComponentName());
    
            ContainerNotAvailableException exception2 = new ContainerNotAvailableException(new RuntimeException());
            assertEquals("container", exception2.getComponentName());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. cmd/typed-errors.go

    // When upload object size is less than what was expected.
    var errDataTooSmall = errors.New("Object size smaller than expected")
    
    // errServerNotInitialized - server not initialized.
    var errServerNotInitialized = errors.New("Server not initialized, please try again")
    
    // errRPCAPIVersionUnsupported - unsupported rpc API version.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

        }
    
        protected FessJsonResourceProvider createJsonResourceProvider() {
            return new FessJsonResourceProvider();
        }
    
        protected FessCurtainBeforeHook createCurtainBeforeHook() {
            return new FessCurtainBeforeHook();
        }
    
        protected FessCurtainFinallyHook createCurtainFinallyHook() {
            return new FessCurtainFinallyHook();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/netbios/NameTest.java

            Name name1 = new Name(mockConfig, "TEST1", 0x20, "scope");
            Name name2 = new Name(mockConfig, "TEST2", 0x20, "scope");
    
            assertFalse(name1.equals(name2));
        }
    
        @Test
        void equals_withDifferentHexCode_shouldReturnFalse() {
            Name name1 = new Name(mockConfig, "TEST", 0x20, "scope");
            Name name2 = new Name(mockConfig, "TEST", 0x1C, "scope");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/primitives/IntsTest.java

        testRotate(new int[] {1, 2}, -1, new int[] {2, 1});
        testRotate(new int[] {1, 2}, -2, new int[] {1, 2});
        testRotate(new int[] {1, 2}, 0, new int[] {1, 2});
        testRotate(new int[] {1, 2}, 1, new int[] {2, 1});
        testRotate(new int[] {1, 2}, 2, new int[] {1, 2});
        testRotate(new int[] {1, 2}, 3, new int[] {2, 1});
    
        testRotate(new int[] {1, 2, 3}, -5, new int[] {3, 1, 2});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/ExecutionListTest.java

      private final ExecutionList list = new ExecutionList();
    
      public void testRunOnPopulatedList() throws Exception {
        Executor exec = newCachedThreadPool();
        CountDownLatch countDownLatch = new CountDownLatch(3);
        list.add(new MockRunnable(countDownLatch), exec);
        list.add(new MockRunnable(countDownLatch), exec);
        list.add(new MockRunnable(countDownLatch), exec);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  10. docs/smb3-features/03-multi-channel-design.md

            this.lastActivityTime = establishedTime;
            
            this.bytesSent = new AtomicLong();
            this.bytesReceived = new AtomicLong();
            this.requestsSent = new AtomicLong();
            this.requestsReceived = new AtomicLong();
            this.errors = new AtomicLong();
            
            this.isPrimary = false;
        }
        
        public void updateActivity() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top