Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for sunday (0.16 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	// so we just fail
    	if err != nil {
    		return 0, err
    	}
    	buf = bytes.TrimSpace(buf)
    	if len(buf) == 0 {
    		return 0, fmt.Errorf("empty weekends file")
    	}
    	dayofweek := time.Weekday(buf[0] - '0') // 0 is Sunday
    	// paranoia to make sure the value is legal
    	dayofweek %= 7
    	if dayofweek < 0 {
    		dayofweek += 7
    	}
    	today := now.Weekday()
    	incr := dayofweek - today
    	if incr <= 0 {
    		incr += 7
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. docs/tr/docs/alternatives.md

    Ama TypeScript verileri kod JavaScript'e derlendikten sonra korunmadığından, bunlara dayanarak aynı anda veri doğrulaması, veri dönüşümü ve dökümantasyon tanımlanamıyor. Bundan ve bazı tasarım tercihlerinden dolayı veri doğrulaması, dönüşümü ve otomatik şema üretimi için pek çok yere dekorator eklemek gerekiyor. Bu da projeyi oldukça detaylandırıyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/path-params.md

    ## Veri Doğrulama
    
    Eğer tarayıcınızda <a href="http://127.0.0.1:8000/items/foo" class="external-link" target="_blank">http://127.0.0.1:8000/items/foo</a> sayfasını açarsanız, şuna benzer güzel bir HTTP hatası ile karşılaşırsınız:
    
    ```JSON
    {
      "detail": [
        {
          "type": "int_parsing",
          "loc": [
            "path",
            "item_id"
          ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/crypto/aes/gcm_s390x.go

    // kmaGCM executes the encryption or decryption operation given by fn. The tag
    // will be calculated and written to tag. cnt should contain the current
    // counter state and will be overwritten with the updated counter state.
    // TODO(mundaym): could pass in hash subkey
    //
    //go:noescape
    func kmaGCM(fn code, key, dst, src, aad []byte, tag *[16]byte, cnt *gcmCount)
    
    // Seal encrypts and authenticates plaintext. See the [cipher.AEAD] interface for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/reloctype.go

    	R_RISCV_RVC_BRANCH
    
    	// R_RISCV_RVC_JUMP resolves an 11-bit PC-relative offset for a CJ-type
    	// instruction.
    	R_RISCV_RVC_JUMP
    
    	// R_PCRELDBL relocates s390x 2-byte aligned PC-relative addresses.
    	// TODO(mundaym): remove once variants can be serialized - see issue 14218.
    	R_PCRELDBL
    
    	// Loong64.
    
    	// R_LOONG64_ADDR_HI resolves to the sign-adjusted "upper" 20 bits (bit 5-24) of an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. docs/tr/docs/index.md

    ---
    
    Daha yeni başladık ama çalışma mantığını çoktan anlamış oldunuz.
    
    Şimdi aşağıdaki satırı değiştirmeyi deneyin:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...bundan:
    
    ```Python
            ... "item_name": item.name ...
    ```
    
    ...buna:
    
    ```Python
            ... "item_price": item.price ...
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. docs/tr/docs/async.md

    Ancak asenkron kodla çalışmayı çok daha kolay hale getirir.
    
    Aynı sözdizimi (hemen hemen aynı) son zamanlarda JavaScript'in modern sürümlerine de dahil edildi (Tarayıcı ve NodeJS'de).
    
    Ancak bundan önce, asenkron kodu işlemek oldukça karmaşık ve zordu.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. docs/az/docs/index.md

    ---
    
    Yeni başlamışıq, amma siz artıq işin məntiqini başa düşmüsünüz.
    
    İndi aşağıdakı sətri dəyişdirməyə çalışın:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...bundan:
    
    ```Python
            ... "item_name": item.name ...
    ```
    
    ...buna:
    
    ```Python
            ... "item_price": item.price ...
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/runtime/runtime-gdb_test.go

    		t.Fatalf("empty backtrace")
    	}
    	for i, l := range lines {
    		if !strings.HasPrefix(l, fmt.Sprintf("#%v  ", i)) {
    			t.Fatalf("malformed backtrace at line %v: %v", i, l)
    		}
    	}
    	// TODO(mundaym): check for unknown frames (e.g. "??").
    }
    
    // NOTE: the maps below are allocated larger than abi.MapBucketCount
    // to ensure that they are not "optimized out".
    
    var helloSource = `
    import "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/time/format_test.go

    	{"Year", "2006 6 06 _6 __6 ___6", "2009 6 09 _6 __6 ___6"},
    	{"Month", "Jan January 1 01 _1", "Feb February 2 02 _2"},
    	{"DayOfMonth", "2 02 _2 __2", "4 04  4  35"},
    	{"DayOfWeek", "Mon Monday", "Wed Wednesday"},
    	{"Hour", "15 3 03 _3", "21 9 09 _9"},
    	{"Minute", "4 04 _4", "0 00 _0"},
    	{"Second", "5 05 _5", "57 57 _57"},
    }
    
    func TestFormat(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top