Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for THU (0.02 sec)

  1. src/time/format_test.go

    	{"Thu May 32 21:00:57 2010", false},
    	{"Thu Jun 30 21:00:57 2010", true},
    	{"Thu Jun 31 21:00:57 2010", false},
    	{"Thu Jul 31 21:00:57 2010", true},
    	{"Thu Jul 32 21:00:57 2010", false},
    	{"Thu Aug 31 21:00:57 2010", true},
    	{"Thu Aug 32 21:00:57 2010", false},
    	{"Thu Sep 30 21:00:57 2010", true},
    	{"Thu Sep 31 21:00:57 2010", false},
    	{"Thu Oct 31 21:00:57 2010", true},
    	{"Thu Oct 32 21:00:57 2010", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. docs/vi/docs/python-types.md

    sang:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Chính là nó.
    
    Những thứ đó là "type hints":
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    Đó không giống như khai báo những giá trị mặc định giống như:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Nó là một thứ khác.
    
    Chúng ta sử dụng dấu hai chấm (`:`), không phải dấu bằng (`=`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. docs/vi/docs/features.md

    ### Đã được kiểm thử
    
    * 100% <abbr title=" Lượng code đã được kiểm thử tự động">test coverage</abbr>.
    * 100% <abbr title="Python type annotations, với điều này trình soạn thảo của bạn và các công cụ bên ngoài có thể hỗ trợ bạn tốt hơn">type annotated</abbr> code base.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. docs/vi/docs/index.md

    * Tài liệu hóa mọi thứ với OpenAPI, tài liệu đó có thể được sử dụng bởi:
    
        * Các hệ thống tài liệu có thể tương tác.
        * Hệ thống sinh code tự động, cho nhiều ngôn ngữ lập trình.
    * Cung cấp trực tiếp 2 giao diện web cho tài liệu tương tác
    
    ---
    
    Chúng tôi chỉ trình bày những thứ cơ bản bên ngoài, nhưng bạn đã hiểu cách thức hoạt động của nó.
    
    Thử thay đổi dòng này:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

            return asStream(id)//
                    .header("Pragma", "no-cache")//
                    .header("Cache-Control", "no-cache")//
                    .header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT")//
                    .header("Content-Type", "application/x-ndjson")//
                    .stream(out -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/net/mail/message_test.go

    			true,
    		},
    		{
    			"Thu, 21 May 2020 14:04:40 UT",
    			time.Date(2020, 05, 21, 14, 04, 40, 0, time.UTC),
    			true,
    		},
    		{
    			"Tue, 26 May 2020 14:04:40 XT",
    			time.Date(2020, 05, 26, 14, 04, 40, 0, time.UTC),
    			false,
    		},
    		{
    			"Thu, 21 May 2020 14:04:40 XT",
    			time.Date(2020, 05, 21, 14, 04, 40, 0, time.UTC),
    			false,
    		},
    		{
    			"Thu, 21 May 2020 14:04:40 UTC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. docs/hotfixes.md

    - A fix must not be a feature, for example.
    
    ```
    commit faf013ec84051b92ae0f420a658b8d35bb7bb000
    Author: Klaus Post <******@****.***>
    Date:   Thu Nov 18 12:15:22 2021 -0800
    
        Improve performance on multiple versions (#13573)
    ```
    
    - A fix must be a valid fix that was reproduced and seen in a customer environment, for example.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/net/mail/message.go

    		date = p.s[:ind+5]
    		p.s = p.s[ind+5:]
    	} else {
    		ind := strings.Index(p.s, "T")
    		if ind == 0 {
    			// In this case we have the following date formats:
    			// * Thu, 20 Nov 1997 09:55:06 MDT
    			// * Thu, 20 Nov 1997 09:55:06 MDT (MDT)
    			// * Thu, 20 Nov 1997 09:55:06 MDT (This comment)
    			ind = strings.Index(p.s[1:], "T")
    			if ind != -1 {
    				ind++
    			}
    		}
    
    		if ind != -1 && len(p.s) >= ind+5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

    /**
     * Gets a text from .eml file.
     *
     * @author shinsuke
     *
     */
    public class EmlExtractor extends AbstractExtractor {
        private static final String[] DAY_OF_WEEK = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
    
        private static final Logger logger = LoggerFactory.getLogger(EmlExtractor.class);
    
        protected Properties mailProperties = new Properties();
    
        /* (non-Javadoc)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
            response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
            response.contentTypeOctetStream();
            return response.stream(out -> {
                try {
                    downloadObject(getObjectName(pi.getPath(), pi.getName()), out);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top