Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 368 for unmix (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			// so that the result Unix time is a valid date and can be parsed into RFC3339 format.
    			var sec, nsec uint32
    			c.Fuzz(&sec)
    			c.Fuzz(&nsec)
    			j.CreationTimestamp = metav1.Unix(int64(sec), int64(nsec)).Rfc3339Copy()
    
    			if j.DeletionTimestamp != nil {
    				c.Fuzz(&sec)
    				c.Fuzz(&nsec)
    				t := metav1.Unix(int64(sec), int64(nsec)).Rfc3339Copy()
    				j.DeletionTimestamp = &t
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/archive/tar/format.go

    // license that can be found in the LICENSE file.
    
    package tar
    
    import "strings"
    
    // Format represents the tar archive format.
    //
    // The original tar format was introduced in Unix V7.
    // Since then, there have been multiple competing formats attempting to
    // standardize or extend the V7 format to overcome its limitations.
    // The most common formats are the USTAR, PAX, and GNU formats,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. internal/auth/credentials.go

    		subtle.ConstantTimeCompare([]byte(cred.SessionToken), []byte(ccred.SessionToken)) == 1)
    }
    
    var timeSentinel = time.Unix(0, 0).UTC()
    
    // ErrInvalidDuration invalid token expiry
    var ErrInvalidDuration = errors.New("invalid token expiry")
    
    // ExpToInt64 - convert input interface value to int64.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/crypto/tls/ticket.go

    	// TLS 1.0–1.2 might be earlier than the current session) and the time at
    	// which the ticket was received on the client.
    	createdAt         uint64 // seconds since UNIX epoch
    	secret            []byte // master secret for TLS 1.2, or the PSK for TLS 1.3
    	extMasterSecret   bool
    	peerCertificates  []*x509.Certificate
    	activeCertHandles []*activeCert
    	ocspResponse      []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top