Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for sunday (0.31 sec)

  1. src/cmd/doc/pkg.go

    	astPkg := pkgs[pkg.Name]
    
    	// TODO: go/doc does not include typed constants in the constants
    	// list, which is what we want. For instance, time.Sunday is of type
    	// time.Weekday, so it is defined in the type but not in the
    	// Consts list for the package. This prevents
    	//	go doc time.Sunday
    	// from finding the symbol. Work around this for now, but we
    	// should fix it in go/doc.
    	// A similar story applies to factory functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/runtime/mgcpacer_test.go

    					// Next, let's make sure there's some minimum distance between the goal
    					// and the trigger. It should be proportional to the runway (hence the
    					// trigger ratio check, instead of a check against the runway).
    					assertInRange(t, "trigger ratio", c[n-1].triggerRatio(), 0.925, 0.975)
    				}
    				if n > 25 {
    					// Double-check that GC utilization looks OK.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  5. src/time/zoneinfo_abbrs_windows.go

    	"Morocco Standard Time":           {"+00", "+01"},     // Africa/Casablanca
    	"South Africa Standard Time":      {"SAST", "SAST"},   // Africa/Johannesburg
    	"South Sudan Standard Time":       {"CAT", "CAT"},     // Africa/Juba
    	"Sudan Standard Time":             {"CAT", "CAT"},     // Africa/Khartoum
    	"W. Central Africa Standard Time": {"WAT", "WAT"},     // Africa/Lagos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VSUMQG H_2, T_0, H_2
    
    	// reduce again after summation
    	// TODO(mundaym): there might be a more efficient way to do this
    	// now that we only have 1 active lane. For example, we could
    	// simultaneously pack the values as we reduce them.
    	REDUCE(H_0, H_1, H_2, H_3, H_4)
    
    	// carry h[1] through to h[4] so that only h[4] can exceed 2²⁶ - 1
    	// TODO(mundaym): in testing this final carry was unnecessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/s390x/asm.go

    			return false
    		}
    	case objabi.R_PCREL, objabi.R_PCRELDBL, objabi.R_CALL:
    		elfrel := elf.R_390_NONE
    		rVariant := ldr.RelocVariant(s, ri)
    		isdbl := rVariant&sym.RV_TYPE_MASK == sym.RV_390_DBL
    		// TODO(mundaym): all DBL style relocations should be
    		// signalled using the variant - see issue 14218.
    		switch r.Type {
    		case objabi.R_PCRELDBL, objabi.R_CALL:
    			isdbl = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top