Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 379 for unmix (0.05 sec)

  1. cmd/erasure-healing-common.go

    	if etag, count := commonETags(etags); count >= quorum {
    		return etag
    	}
    	return ""
    }
    
    // Beginning of unix time is treated as sentinel value here.
    var (
    	timeSentinel     = time.Unix(0, 0).UTC()
    	timeSentinel1970 = time.Unix(0, 1).UTC() // 1970 used for special cases when xlmeta.version == 0
    )
    
    // Boot modTimes up to disk count, setting the value to time sentinel.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. cmd/bucket-replication-stats.go

    }
    
    func (r *ReplicationStats) getSRMetricsForNode() SRMetricsSummary {
    	if r == nil {
    		return SRMetricsSummary{}
    	}
    
    	m := SRMetricsSummary{
    		Uptime:        UTCNow().Unix() - globalBootTime.Unix(),
    		Queued:        r.qCache.getSiteStats(),
    		ActiveWorkers: r.ActiveWorkers(),
    		Metrics:       r.srStats.get(),
    		Proxied:       r.pCache.getSiteStats(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/os/file.go

    		}
    		dir += "/lib"
    
    	default: // Unix
    		dir = Getenv("XDG_CONFIG_HOME")
    		if dir == "" {
    			dir = Getenv("HOME")
    			if dir == "" {
    				return "", errors.New("neither $XDG_CONFIG_HOME nor $HOME are defined")
    			}
    			dir += "/.config"
    		}
    	}
    
    	return dir, nil
    }
    
    // UserHomeDir returns the current user's home directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. src/net/error_test.go

    	}
    
    	for _, network := range []string{"tcp", "udp", "ip:4294967296", "unix", "unixpacket", "unixgram"} {
    		var err error
    		switch network {
    		case "tcp":
    			_, err = DialTCP(network, nil, &TCPAddr{Port: 1 << 16})
    		case "udp":
    			_, err = DialUDP(network, nil, &UDPAddr{Port: 1 << 16})
    		case "ip:4294967296":
    			_, err = DialIP(network, nil, nil)
    		case "unix", "unixpacket", "unixgram":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. src/time/zoneinfo.go

    	}
    
    	return s + r.time - off
    }
    
    // lookupName returns information about the time zone with
    // the given name (such as "EST") at the given pseudo-Unix time
    // (what the given time of day would be in UTC).
    func (l *Location) lookupName(name string, unix int64) (offset int, ok bool) {
    	l = l.get()
    
    	// First try for a zone with the right name that was actually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

     * </pre>
     * <p>
     * Note: the Gradle {@code "application"} plugin adds a pre-configured task of this type named {@code "startScripts"}.
     * <p>
     * The task generates separate scripts targeted at Microsoft Windows environments and UNIX-like environments (e.g. Linux, macOS).
     * The actual generation is implemented by the {@link #getWindowsStartScriptGenerator()} and {@link #getUnixStartScriptGenerator()} properties, of type {@link ScriptGenerator}.
     * <p>
     * Example:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. pkg/controller/daemon/update_test.go

    	manager.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(100, 0))
    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, 5, 0, 0)
    
    	// waiting for pods to go ready, old pods are deleted
    	manager.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(200, 0))
    	clearExpectations(t, manager, ds, podControl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. src/time/format_test.go

    	const fmt = "Mon MST " + RFC3339 // all fields
    	f := func(sec int64) bool {
    		t1 := Unix(sec/2, 0)
    		if t1.Year() < 1000 || t1.Year() > 9999 || t1.Unix() != sec {
    			// not required to work
    			return true
    		}
    		t2, err := Parse(fmt, t1.Format(fmt))
    		if err != nil {
    			t.Errorf("error: %s", err)
    			return false
    		}
    		if t1.Unix() != t2.Unix() || t1.Nanosecond() != t2.Nanosecond() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. internal/jwt/parser.go

    }
    
    // SetAudience sets audience for these claims
    func (c *StandardClaims) SetAudience(aud string) {
    	c.Audience = aud
    }
    
    // SetExpiry sets expiry in unix epoch secs
    func (c *StandardClaims) SetExpiry(t time.Time) {
    	c.ExpiresAt = t.Unix()
    }
    
    // SetAccessKey sets access key as jwt subject and custom
    // "accessKey" field.
    func (c *StandardClaims) SetAccessKey(accessKey string) {
    	c.Subject = accessKey
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. src/os/file_plan9.go

    func Chtimes(name string, atime time.Time, mtime time.Time) error {
    	var d syscall.Dir
    
    	d.Null()
    	d.Atime = uint32(atime.Unix())
    	d.Mtime = uint32(mtime.Unix())
    	if atime.IsZero() {
    		d.Atime = 0xFFFFFFFF
    	}
    	if mtime.IsZero() {
    		d.Mtime = 0xFFFFFFFF
    	}
    
    	var buf [syscall.STATFIXLEN]byte
    	n, err := d.Marshal(buf[:])
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top