Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for yearly (0.14 sec)

  1. src/time/time_test.go

    		for _, ydt := range yearDayTests {
    			dt := Date(ydt.year, Month(ydt.month), ydt.day, 0, 0, 0, 0, loc)
    			yday := dt.YearDay()
    			if yday != ydt.yday {
    				t.Errorf("Date(%d-%02d-%02d in %v).YearDay() = %d, want %d",
    					ydt.year, ydt.month, ydt.day, loc, yday, ydt.yday)
    				continue
    			}
    
    			if ydt.year < 0 || ydt.year > 9999 {
    				continue
    			}
    			f := fmt.Sprintf("%04d-%02d-%02d %03d %+.2d00",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    				// append the service. Otherwise (TCP), change current listener to use protocol sniffing.
    				if currentListenerEntry.protocol.IsTCP() {
    					conflictType = HTTPOverTCP
    				} else {
    					// Exit early, listener already exists
    					return
    				}
    			}
    			opts = buildSidecarOutboundHTTPListenerOpts(listenerOpts, actualWildcards[0], listenerProtocol)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	// If this is nil, it is populated with the real thing in init.
    	scavenge func(n uintptr) (uintptr, int64)
    
    	// shouldStop is a callback called in the work loop and provides a
    	// point that can force the scavenger to stop early, for example because
    	// the scavenge policy dictates too much has been scavenged already.
    	//
    	// If this is nil, it is populated with the real thing in init.
    	shouldStop func() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    // operate in workspace mode. It should not be called by other commands,
    // for example 'go mod tidy', that don't operate in workspace mode.
    func InitWorkfile() {
    	// Initialize fsys early because we need overlay to read go.work file.
    	if err := fsys.Init(base.Cwd()); err != nil {
    		base.Fatal(err)
    	}
    	workFilePath = FindGoWork(base.Cwd())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    // some ipset(kubeClusterIPSet for example) have particular match rules and iptables jump relation should be sync separately.
    func (proxier *Proxier) writeIptablesRules() {
    
    	// Dismiss connects to localhost early in the service chain
    	loAddr := "127.0.0.0/8"
    	if proxier.ipFamily == v1.IPv6Protocol {
    		loAddr = "::1/128"
    	}
    	proxier.natRules.Write("-A", string(kubeServicesChain), "-s", loAddr, "-j", "RETURN")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    	// enabled because they must be enabled before
    	// any non-leaf heap objects are marked. Since
    	// allocations are blocked until assists can
    	// happen, we want to enable assists as early as
    	// possible.
    	setGCPhase(_GCmark)
    
    	gcBgMarkPrepare() // Must happen before assists are enabled.
    	gcMarkRootPrepare()
    
    	// Mark all active tinyalloc blocks. Since we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Previously, this logic would have omitted the two above noted attributes entirely, while now the same logic will copy the attributes and finalize the project's Java toolchain.
    To avoid early toolchain finalization, attribute-copying logic should be updated to query the source Configuration's attributes lazily:
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

        - [Node Binaries](#node-binaries)
        - [Container Images](#container-images)
      - [Changelog since v1.30.0](#changelog-since-v1300)
      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
        - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
      - [Changes by Kind](#changes-by-kind)
        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    		}
    		if span.elemsize > minSizeForMallocHeader {
    			throw("heapBits called for span class that should have a malloc header")
    		}
    	}
    	// Find the bitmap at the end of the span.
    	//
    	// Nearly every span with heap bits is exactly one page in size. Arenas are the only exception.
    	if span.npages == 1 {
    		// This will be inlined and constant-folded down.
    		return heapBitsSlice(span.base(), pageSize)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top