Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,064 for nulla (0.12 sec)

  1. src/main/java/org/codelibs/core/xml/DomUtil.java

         *            コンテンツ。{@literal null}であってはいけません
         * @param encoding
         *            エンコーディング。{@literal null}の場合はプラットフォームのデフォルトエンコーディングが使われます
         * @return {@link InputStream}
         */
        public static InputStream getContentsAsStream(final String contents, final String encoding) {
            assertArgumentNotNull("contents", contents);
    
            if (encoding == null) {
                return new ByteArrayInputStream(contents.getBytes());
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                return null;
            }
            synchronized ( this.addressCache ) {
                CacheEntry entry = this.addressCache.get(hostName);
                if ( entry != null && entry.expiration < System.currentTimeMillis() && entry.expiration >= 0 ) {
                    entry = null;
                }
                return entry != null ? entry.address : null;
            }
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

            currentPageNumber = getDefaultCurrentPageNumber();
    
            id = null;
            name = null;
            paths = null;
            numOfThread = null;
            intervalTime = null;
            boost = null;
            available = null;
            sortOrder = null;
            createdBy = null;
            createdTime = null;
            versionNo = null;
            description = null;
    
        }
    
        protected int getDefaultCurrentPageNumber() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertThat(StringUtil.defaultString("aaa", null), is("aaa"));
            assertThat(StringUtil.defaultString(null, null), is(nullValue()));
        }
    
        @Test
        public void testNewStringUnsafe() {
            assertNull(StringUtil.newStringUnsafe(null));
            Method newStringUnsafeMethod = StringUtil.newStringUnsafeMethod;
            if (newStringUnsafeMethod != null) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

    public class QueryResponseListTest extends UnitFessTestCase {
        public void test_calculatePageInfo_page0() {
            QueryResponseList qrList;
    
            qrList = new QueryResponseList(null, 0, 20, 0) {
                @Override
                public int size() {
                    return 0;
                }
            };
            qrList.calculatePageInfo();
            assertEquals(20, qrList.getPageSize());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        public String startTime;
    
        public String endTime;
    
        public void initialize() {
            id = null;
            jobName = null;
            jobStatus = null;
            target = null;
            scriptType = null;
            scriptData = null;
            scriptResult = null;
            startTime = null;
            endTime = null;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/PropertiesUtil.java

        /**
         * 指定のエンコーディングでファイルを読み込んで{@link Properties}にロードします(例外処理はラップします)。
         *
         * @param props
         *            プロパティセット。{@literal null}であってはいけません
         * @param file
         *            ファイル。{@literal null}であってはいけません
         * @param encoding
         *            エンコーディング。{@literal null}や空文字列であってはいけません
         */
        public static void load(final Properties props, final File file, final String encoding) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SpnegoContext.java

                if ( targ.getResult() == NegTokenTarg.ACCEPT_INCOMPLETE && targ.getMechanismToken() == null && targ.getMechanismListMIC() != null ) {
                    // this indicates that mechlistMIC is required by the server
                    verifyMechListMIC(targ.getMechanismListMIC());
                    return new NegTokenTarg(NegTokenTarg.UNSPECIFIED_RESULT, null, null, calculateMechListMIC());
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

            final Date date = format.parse(str, pos);
            if (date == null) {
                return null;
            }
            final int index = pos.getIndex();
            if (index == 0) {
                return null;
            }
            if (index < str.length()) {
                return null;
            }
            return date;
        }
    
        /**
         * {@link Date}を{@link Calendar}に変換します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/misc/Tuple5.java

            int result = 1;
            result = prime * result + ((value1 == null) ? 0 : value1.hashCode());
            result = prime * result + ((value2 == null) ? 0 : value2.hashCode());
            result = prime * result + ((value3 == null) ? 0 : value3.hashCode());
            result = prime * result + ((value4 == null) ? 0 : value4.hashCode());
            result = prime * result + ((value5 == null) ? 0 : value5.hashCode());
            return result;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top