Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for DD (0.29 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

            if (format.contains("epoch_millis")) {
                return Long.toString(date.getTime());
            } else if (format.contains("date_optional_time")) {
                final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
                sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
                return sdf.format(date);
            } else {
                return Long.toString(date.getTime());
            }
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

     * </pre>
     * <p>
     * {@literal CopyOptionsUtil}の戻り値は{@link CopyOptions}
     * なので、メソッドチェーンでオプションを複数指定することもできます。
     * </p>
     *
     * <pre>
     * copyBeanToBean(srcBean, destBean, excludeNull().dateConverter("date", "MM/dd"));
     * </pre>
     *
     * @author koichik
     */
    public abstract class CopyOptionsUtil {
    
        /**
         * 操作の対象に含めるプロパティ名を指定した{@link CopyOptions}を返します。
         *
         * @param propertyNames
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val plexusClassworlds = "org.codehaus.plexus:plexus-classworlds"
        val plexusUtils = "org.codehaus.plexus:plexus-utils"
        val plist = "com.googlecode.plist:dd-plist"
        val pmavenCommon = "org.sonatype.pmaven:pmaven-common"
        val pmavenGroovy = "org.sonatype.pmaven:pmaven-groovy"
        val slf4jApi = "org.slf4j:slf4j-api"
        val slf4jSimple = "org.slf4j:slf4j-simple"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses_test.go

    	for i := start; i <= number; i++ {
    		if paddinglen == 0 {
    			seq = append(seq, fmt.Sprintf("%d", i))
    		} else {
    			seq = append(seq, fmt.Sprintf(fmt.Sprintf("%%0%dd", paddinglen), i))
    		}
    	}
    	return seq
    }
    
    // Test tests parses endpoint ellipses input pattern.
    func TestParseEndpointSet(t *testing.T) {
    	testCases := []struct {
    		arg     string
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 15.2K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                                                        </td>
                                                        <td>${f:h(data.size)}</td>
                                                        <td>${fe:formatDate(data.lastModified, 'yyyy-MM-dd HH:mm:ss')}</td>
                                                    </c:if>
                                                    <c:if test="${data.directory.booleanValue()}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu May 26 01:48:41 GMT 2022
    - 20.4K bytes
    - Viewed (0)
  6. cmd/storage-datatypes.go

    	// with the remote tier.
    	TransitionVersionID string `msg:"tv"`
    	// ExpireRestored indicates that the restored object is to be expired.
    	ExpireRestored bool `msg:"exp"`
    
    	// DataDir of the file
    	DataDir string `msg:"dd"`
    
    	// Indicates if this object is still in V1 format.
    	XLV1 bool `msg:"v1"`
    
    	// Date and time when the file was last modified, if Deleted
    	// is 'true' this value represents when while was deleted.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

        public static final String NDJSON_EXTENTION = ".ndjson";
    
        private static final DateTimeFormatter ISO_8601_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS");
    
        @Resource
        private AsyncManager asyncManager;
    
        @Resource
        private WebConfigBhv webConfigBhv;
    
        @Resource
        private FileConfigBhv fileConfigBhv;
    
        @Resource
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    	var err error
    	if fi.VersionID != "" && fi.VersionID != nullVersionID {
    		uv, err = uuid.Parse(fi.VersionID)
    		if err != nil {
    			return err
    		}
    	}
    
    	var dd uuid.UUID
    	if fi.DataDir != "" {
    		dd, err = uuid.Parse(fi.DataDir)
    		if err != nil {
    			return err
    		}
    	}
    
    	ventry := xlMetaV2Version{
    		WrittenByVersion: globalVersionUnix,
    	}
    
    	if fi.Deleted {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

        return Buffer()
          .write(this, 0, size - 1)
          .writeByte(this[size - 1].toInt() xor 1)
          .readByteString()
      }
    
      private fun date(s: String): Date {
        return SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").run {
          timeZone = TimeZone.getTimeZone("GMT")
          parse(s)
        }
      }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

     *
     * copyBeanToBean(srcBean, destBean, excludeNull());
     * </pre>
     * <p>
     * メソッドチェーンでオプションを複数指定することもできます。
     * </p>
     *
     * <pre>
     * copyBeanToBean(srcBean, destBean, excludeNull().dateConverter("date", "MM/dd"));
     * </pre>
     *
     * @author Kimura Satoshi
     * @author higa
     * @author shinsuke
     * @see CopyOptionsUtil
     * @see CopyOptions
     */
    public abstract class BeanUtil {
    
        /** デフォルトのオプション */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
Back to top