Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,110 for xtrue (0.04 sec)

  1. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                    return true;
                } else if (paramTypes[index] == int.class) {
                    args[index] = IntegerConversionUtil.toInteger(args[index]);
                    return true;
                } else if (paramTypes[index] == long.class) {
                    args[index] = LongConversionUtil.toLong(args[index]);
                    return true;
                } else if (paramTypes[index] == float.class) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  2. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            when(negotiationResponse.canReuse(any(CIFSContext.class), anyBoolean())).thenReturn(true);
    
            // Use reflection to set the negotiated response
            Field negotiatedField = SmbTransportImpl.class.getDeclaredField("negotiated");
            negotiatedField.setAccessible(true);
            negotiatedField.set(initial, negotiationResponse);
    
            // When: Request connection with signing enforced
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  3. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        get() = Proxy(Proxy.Type.HTTP, socketAddress)
    
      /**
       * True if ALPN is used on incoming HTTPS connections to negotiate a protocol like HTTP/1.1 or
       * HTTP/2. This is true by default; set to false to disable negotiation and restrict connections
       * to HTTP/1.1.
       */
      public var protocolNegotiationEnabled: Boolean = true
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java

        void testConstructorWithBuffer() throws IOException {
            // Prepare minimal valid SecurityDescriptor buffer
            prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, true, true, false);
    
            SecurityDescriptor sd = new SecurityDescriptor(testBuffer, 0, testBuffer.length);
    
            assertNotNull(sd.getOwnerUserSid());
            assertNotNull(sd.getOwnerGroupSid());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java

            when(tree.acquire()).thenReturn(tree);
            when(tree.isSMB2()).thenReturn(true);
            when(pipe.openUnshared(eq("\\\\pipe\\\\w"), eq(0), anyInt(), anyInt(), eq(SmbConstants.ATTR_NORMAL), eq(0))).thenReturn(fh);
            when(fh.acquire()).thenReturn(fh);
            when(fh.isValid()).thenReturn(true, false); // first true, then false
    
            handle.ensureOpen();
            assertTrue(handle.isOpen());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/config/BaseConfigurationTest.java

            BaseConfiguration testConfig = new BaseConfiguration(false);
            testConfig.useExtendedSecurity = true;
            testConfig.signingPreferred = true;
            testConfig.useNtStatus = true;
            testConfig.useUnicode = true;
            testConfig.forceUnicode = true;
    
            testConfig.initDefaults();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpHeaders.kt

        responseCode != HTTP_NOT_MODIFIED
      ) {
        return true
      }
    
      // If the Content-Length or Transfer-Encoding headers disagree with the response code, the
      // response is malformed. For best compatibility, we honor the headers.
      if (headersContentLength() != -1L ||
        "chunked".equals(header("Transfer-Encoding"), ignoreCase = true)
      ) {
        return true
      }
    
      return false
    }
    
    @Deprecated(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #   [true]
        #     Add schema to table SQL name. (The table name on query is SCHEMA.TABLE)
        #
        #; isAvailableAddingSchemaToTableSqlName = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isAvailableAddingCatalogToTableSqlName: (NotRequired - Default false)
        #   [true]
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

        public Enum<?> implicitlyBoundedEnum(Enum<?> e) {
          return isSubtype(e);
        }
    
        @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true)
        public Enum<?> explicitlyBoundedEnumIsSubtypeOfImplicitlyBoundedEnum(
            Enum<? extends Enum<?>> obj) {
          return isSubtype(obj);
        }
    
        @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEquals("\\Qhttps://example.com\\E.*", parser.parseFilterPaths("https://example.com", true, false));
            assertEquals("\\Qfile://test\\E.*", parser.parseFilterPaths("file://test", true, false));
            assertEquals("\\Qtest\\E", parser.parseFilterPaths("test", true, false));
            assertEquals("", parser.parseFilterPaths("# comment\n\n  ", true, false));
        }
    
        public void test_parseFilterPaths_file() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top