Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 289 for Dd (0.03 sec)

  1. src/main/webapp/WEB-INF/view/common/help.jsp

    	</dd>
    	<dt>AND</dt>
    	<dd>
    		AND operator is the default conjunction operator. You can omit it from
    		a query. AND operator matches documents where both terms exist
    		anywhere in the text of a single document.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR</dt>
    	<dd>
    		OR operator matches documents where any terms exist anywhere in the
    		text of a single document.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>Wildcard</dt>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

        //        assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(date), is("2010/09/07 11:49:10"));
        //    }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToDate_SpecificPattern() throws Exception {
            final Date date = toDate("07/09/10 10:49:11", "dd/MM/yy ss:mm:HH", Locale.JAPAN);
            assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(date), is("2010/09/07 11:49:10"));
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/help_ko.jsp

    		설정에서 지정하는 필드는 변경할 수 있습니다.
    	</dd>
    	<dt>AND검색</dt>
    	<dd>
    		AND 연산자는 선택적 연결 연산자입니다.
    		AND 연산자는 지정한 검색어를 모두 포함한 문서와 일치합니다.
    		예를 들어, Fess과 CodeLibs를 포함하는 문서 검색하려면 다음과 같이 입력합니다.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR검색</dt>
    	<dd>
    		OR 연산자는 지정한 검색어 중 하나를 포함하는 문서에 매치합니다.
    		예를 들어, Fess 또는 CodeLibs를 포함하는 문서를 검색하려면 다음과 같이 입력합니다.
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>와일드카드</dt>
    	<dd>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

        "EEE, dd MMM yyyy HH:mm:ss zzz",
        // RFC 850, obsoleted by RFC 1036 with any TZ.
        "EEEE, dd-MMM-yy HH:mm:ss zzz",
        // ANSI C's asctime() format
        "EEE MMM d HH:mm:ss yyyy",
        // Alternative formats:
        "EEE, dd-MMM-yyyy HH:mm:ss z",
        "EEE, dd-MMM-yyyy HH-mm-ss z",
        "EEE, dd MMM yy HH:mm:ss z",
        "EEE dd-MMM-yyyy HH:mm:ss z",
        "EEE dd MMM yyyy HH:mm:ss z",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java

            assertThat(new SimpleDateFormat("yyyy/MM/dd").format(date), is("2010/09/07"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToDate_SpecificPattern() throws Exception {
            final Date date = toDate("07//09//10", "dd//MM//yy");
            assertThat(new SimpleDateFormat("yyyy/MM/dd").format(date), is("2010/09/07"));
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/help_ja.jsp

    		設定で指定するフィールドは変更することができます。
    	</dd>
    	<dt>AND検索</dt>
    	<dd>
    		AND 演算子は省略可能な連結演算子です。
    		AND 演算子は指定した検索語をすべて含むドキュメントにマッチします。
    		たとえば、Fess と CodeLibs を含むドキュメント検索するには次のように入力します。
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR検索</dt>
    	<dd>
    		OR 演算子は指定した検索語のいずれかを含むドキュメントにマッチします。
    		たとえば、Fess または CodeLibs を含むドキュメントを検索するには次のように入力します。
    		<pre>Fess OR CodeLibs</pre>
    	</dd>
    	<dt>ワイルドカード</dt>
    	<dd>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  7. src/compress/flate/dict_decoder_test.go

    	}
    
    	var got, want bytes.Buffer
    	var dd dictDecoder
    	dd.init(1<<11, nil)
    
    	var writeCopy = func(dist, length int) {
    		for length > 0 {
    			cnt := dd.tryWriteCopy(dist, length)
    			if cnt == 0 {
    				cnt = dd.writeCopy(dist, length)
    			}
    
    			length -= cnt
    			if dd.availWrite() == 0 {
    				got.Write(dd.readFlush())
    			}
    		}
    	}
    	var writeString = func(str string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 28 10:36:01 UTC 2016
    - 4.4K bytes
    - Viewed (0)
  8. src/compress/flate/dict_decoder.go

    // the contents of dict.
    func (dd *dictDecoder) init(size int, dict []byte) {
    	*dd = dictDecoder{hist: dd.hist}
    
    	if cap(dd.hist) < size {
    		dd.hist = make([]byte, size)
    	}
    	dd.hist = dd.hist[:size]
    
    	if len(dict) > len(dd.hist) {
    		dict = dict[len(dict)-len(dd.hist):]
    	}
    	dd.wrPos = copy(dd.hist, dict)
    	if dd.wrPos == len(dd.hist) {
    		dd.wrPos = 0
    		dd.full = true
    	}
    	dd.rdPos = dd.wrPos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

         *
         * <dl>
         *     <dt>{@code source}
         *     <dd>Source file debugging information
         *     <dt>{@code lines}
         *     <dd>Line number debugging information
         *     <dt>{@code vars}
         *     <dd>Local variable debugging information
         * </dl>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/admin.js

          locale: {
            format: "YYYY-MM-DD"
          }
        })
        .on("apply.daterangepicker", function(ev, picker) {
          $(this).val(picker.startDate.format("YYYY-MM-DD"));
        });
      $("input.form-control.daterange")
        .daterangepicker({
          autoUpdateInput: false,
          timePicker: false,
          singleDatePicker: false,
          locale: {
            format: "YYYY-MM-DD"
          }
        })
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 06 20:44:47 UTC 2018
    - 3.1K bytes
    - Viewed (0)
Back to top