Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 3,485 for asString (0.11 sec)

  1. src/test/java/jcifs/internal/util/StringUtilTest.java

        void testJoinWithMixedCharSequenceTypes() {
            String str = "string";
            StringBuilder builder = new StringBuilder("builder");
            StringBuffer buffer = new StringBuffer("buffer");
            String result = StringUtil.join(",", str, builder, buffer);
            assertEquals("string,builder,buffer", result);
        }
    
        @ParameterizedTest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacUnicodeString.java

         * @throws PACDecodingException if validation fails
         */
        public String check(final String string) throws PACDecodingException {
            if (this.pointer == 0 && string != null) {
                throw new PACDecodingException("Non-empty string");
            }
    
            final int expected = this.length / 2;
            if (string.length() != expected) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

        public static final String SAME_ORIGIN = "same-origin";
        public static final String ORIGIN = "origin";
        public static final String STRICT_ORIGIN = "strict-origin";
        public static final String ORIGIN_WHEN_CROSS_ORIGIN = "origin-when-cross-origin";
        public static final String STRICT_ORIGIN_WHEN_CROSS_ORIGIN = "strict-origin-when-cross-origin";
        public static final String UNSAFE_URL = "unsafe-url";
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/text/Tokenizer.java

        /**
         * Creates a {@link Tokenizer}.
         *
         * @param str
         *            The string. Must not be {@literal null}.
         */
        public Tokenizer(final String str) {
            this(str, defaultCtype);
        }
    
        /**
         * Creates a {@link Tokenizer}.
         *
         * @param str
         *            The string. Must not be {@literal null}.
         * @param ctype
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

            RelatedQuery entity = createRelatedQuery("term", new String[] { "query" }, "");
            String key = relatedQueryHelper.getHostKey(entity);
            assertEquals("", key);
        }
    
        public void test_getHostKey_nullVirtualHost() {
            RelatedQuery entity = createRelatedQuery("term", new String[] { "query" }, null);
            String key = relatedQueryHelper.getHostKey(entity);
            assertEquals("", key);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  6. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

        private var notAfter = -1L
        private var commonName: String? = null
        private var organizationalUnit: String? = null
        private val altNames = mutableListOf<String>()
        private var serialNumber: BigInteger? = null
        private var keyPair: KeyPair? = null
        private var signedBy: HeldCertificate? = null
        private var maxIntermediateCas = -1
        private var keyAlgorithm: String? = null
        private var keySize: Int = 0
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/ResourceManager.java

         */
        private static class ResourceHolder {
            final String resourceId;
            final String resourceType;
            final WeakReference<AutoCloseable> resourceRef;
            final PhantomReference<AutoCloseable> phantomRef;
            final long creationTime;
            final StackTraceElement[] allocationStackTrace;
            volatile boolean closed;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Tools.java

        public static final String MVN_CMD = "mvn";
        public static final String MVN_NAME = "Maven";
    
        public static final String MVNENC_CMD = "mvnenc";
        public static final String MVNENC_NAME = "Maven Password Encrypting Tool";
    
        public static final String MVNSHELL_CMD = "mvnsh";
        public static final String MVNSHELL_NAME = "Maven Shell Tool";
    
        public static final String MVNUP_CMD = "mvnup";
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebConfig.java

        /** configParameter */
        protected String configParameter;
    
        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** depth */
        protected Integer depth;
    
        /** description */
        protected String description;
    
        /** excludedDocUrls */
        protected String excludedDocUrls;
    
        /** excludedUrls */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

            String message = "";
            PluginException exception = new PluginException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructor_withMessageAndNullCause() {
            // Test constructor with message and null cause
            String message = "Plugin error with null cause";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top