Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 131 for araw (0.14 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java

          TestMultimapGenerator<K, V, M> generator) {
        return new MultimapTestSuiteBuilder<K, V, M>().usingGenerator(generator);
      }
    
      // Class parameters must be raw.
      @SuppressWarnings("rawtypes") // class literals
      @Override
      protected List<Class<? extends AbstractTester>> getTesters() {
        return ImmutableList.<Class<? extends AbstractTester>>of(
            MultimapAsMapGetTester.class,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

        return new ParameterizedTypeImpl(
            ClassOwnership.JVM_BEHAVIOR.getOwnerType(rawType), rawType, arguments);
      }
    
      /** Decides what owner type to use for constructing {@link ParameterizedType} from a raw class. */
      private enum ClassOwnership {
        OWNED_BY_ENCLOSING_CLASS {
          @Override
          @Nullable Class<?> getOwnerType(Class<?> rawType) {
            return rawType.getEnclosingClass();
          }
        },
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            // Then
            assertEquals(3, lanmanCompatibility, "Should delegate LanMan compatibility");
            assertTrue(allowNTLMFallback, "Should delegate NTLM fallback setting");
            assertFalse(useRawNTLM, "Should delegate raw NTLM setting");
            assertTrue(disablePlainTextPasswords, "Should delegate plain text password setting");
            assertEquals("GUEST", guestUsername, "Should delegate guest username");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbConstants.java

        /**
         * Strings are Unicode flag.
         */
        int FLAGS2_UNICODE = 0x8000;
    
        /**
         * No capabilities.
         */
        int CAP_NONE = 0x0000;
        /**
         * Raw mode transfers are supported capability.
         */
        int CAP_RAW_MODE = 0x0001;
        /**
         * Multiplex mode is supported capability.
         */
        int CAP_MPX_MODE = 0x0002;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

            @Test
            @DisplayName("Test verify failed state")
            void testVerifyFailedState() {
                assertFalse(testBlock.isVerifyFailed());
            }
    
            @Test
            @DisplayName("Test raw payload handling")
            void testRawPayloadHandling() {
                byte[] payload = new byte[] { 1, 2, 3, 4, 5 };
    
                assertNull(testBlock.getRawPayload());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

      }
    
      // We use the rawtypeToWildcard "cast" to make the test work with J2KT in other tests. Leaving one
      // test without that cast to verify that using the raw Comparable works outside J2KT.
      @J2ktIncompatible // J2KT's translation of raw Comparable is not a supertype of Int translation
      public void testCreation_expectedSize() {
        MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.expectedSize(8).create();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt

        }
      }
    
      internal fun useAsSocket() {
        javaNetSocket.soTimeout = 0
        noNewExchanges()
      }
    
      override fun route(): Route = route
    
      override fun cancel() {
        // Close the raw socket so we don't end up doing synchronous I/O.
        rawSocket.closeQuietly()
      }
    
      override fun socket(): JavaNetSocket = javaNetSocket
    
      /** Returns true if this connection is ready to host new streams. */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

         */
        boolean isAllowNTLMFallback();
    
        /**
         * Property {@code jcifs.smb.useRawNTLM} (boolean, default false)
         *
         * @return whether to use raw NTLMSSP tokens instead of SPNEGO wrapped ones
         * @since 2.1
         */
        boolean isUseRawNTLM();
    
        /**
         *
         * Property {@code jcifs.smb.client.disablePlainTextPasswords} (boolean, default true)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

                AvPair decoded = decodedPairs.get(i);
    
                assertEquals(original.getType(), decoded.getType(), "Type should match at index " + i);
                assertTrue(Arrays.equals(original.getRaw(), decoded.getRaw()), "Raw data should match at index " + i);
            }
        }
    
        /**
         * Test decode with AvSingleHost type
         */
        @Test
        @DisplayName("Decode should create AvSingleHost instance")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

       *
       * <ul>
       *   <li>exactly of the given type, including generic type parameters, such as {@code
       *       ImmutableList<String>};
       *   <li>of the raw type;
       *   <li>null if no value can be generated.
       * </ul>
       */
      final @Nullable Object generateFresh(TypeToken<?> type) {
        Object generated = generate(type);
        if (generated != null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 28.1K bytes
    - Viewed (0)
Back to top