Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Moon (0.06 sec)

  1. src/time/format.go

    		case stdZeroYearDay:
    			b = appendInt(b, yday, 3)
    		case stdHour:
    			b = appendInt(b, hour, 2)
    		case stdHour12:
    			// Noon is 12PM, midnight is 12AM.
    			hr := hour % 12
    			if hr == 0 {
    				hr = 12
    			}
    			b = appendInt(b, hr, 0)
    		case stdZeroHour12:
    			// Noon is 12PM, midnight is 12AM.
    			hr := hour % 12
    			if hr == 0 {
    				hr = 12
    			}
    			b = appendInt(b, hr, 2)
    		case stdMinute:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            // effective model.
            //
            // As of 3.4, the model version is mandatory even in raw models. The XML element still is optional in the
            // XML schema and this will not change anytime soon. We do not want to build effective models based on
            // models without a version starting with 3.4.
            validateStringNotEmpty("modelVersion", problems, Severity.ERROR, Version.V20, m.getModelVersion(), m);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. .bazelrc

    # unsupported flags to replace the release flags in your build command.
    # However, please note that the old toolchain is no longer officially supported
    # by TensorFlow and the unsupported configs will be removed soon b/299962977. We
    # strongly recommend that you migrate to Clang as your compiler for TensorFlow
    # Linux builds. Instructions are available in the official documentation:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) dispatchEvents() {
    	// Jitter to help level out any aggregate load.
    	bookmarkTimer := c.clock.NewTimer(wait.Jitter(time.Second, 0.25))
    	defer bookmarkTimer.Stop()
    
    	// The internal informer populates the RV as soon as it conducts
    	// The first successful sync with the underlying store.
    	// The cache must wait until this first sync is completed to be deemed ready.
    	// Since we cannot send a bookmark when the lastProcessedResourceVersion is 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    			logger.Error(err, "Error cleaning up nftables rules")
    			encounteredError = true
    		}
    	}
    
    	return encounteredError
    }
    
    // Sync is called to synchronize the proxier state to nftables as soon as possible.
    func (proxier *Proxier) Sync() {
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.QueuedUpdate(proxier.ipFamily)
    	}
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

            && clobber(call)
            => (Move [sz] dst src mem)
    
    // Prefetch instructions (TH specified using aux field)
    // For DCBT Ra,Rb,TH, A value of TH indicates:
    //     0, hint this cache line will be used soon. (PrefetchCache)
    //     16, hint this cache line will not be used for long. (PrefetchCacheStreamed)
    // See ISA 3.0 Book II 4.3.2 for more detail. https://openpower.foundation/specifications/isa/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    				// either of those conditions holds, *and* no other query changes the
    				// selected version of curM, then we will fail in checkWildcardVersions.
    				// (This could be an error, but it's too soon to tell.)
    				//
    				// However, even then the transitive requirements of some other query
    				// may downgrade this module out of the build list entirely, in which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    '@
    
    
    # ----------- Stackdriver logging setup --------------------------
    # This section would be deprecated soon
    #
    
    $STACKDRIVER_ROOT = 'C:\Program Files (x86)\Stackdriver'
    
    # Restarts the Stackdriver logging agent, or starts it if it is not currently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top