Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 234 for unmix (0.05 sec)

  1. src/net/tcpsock_posix.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || js || wasip1 || windows
    
    package net
    
    import (
    	"context"
    	"io"
    	"os"
    	"syscall"
    )
    
    func sockaddrToTCP(sa syscall.Sockaddr) Addr {
    	switch sa := sa.(type) {
    	case *syscall.SockaddrInet4:
    		return &TCPAddr{IP: sa.Addr[0:], Port: sa.Port}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/os/dir.go

    		dirents = []DirEntry{}
    	}
    	return dirents, err
    }
    
    // testingForceReadDirLstat forces ReadDir to call Lstat, for testing that code path.
    // This can be difficult to provoke on some Unix systems otherwise.
    var testingForceReadDirLstat bool
    
    // ReadDir reads the named directory,
    // returning all its directory entries sorted by filename.
    // If an error occurs reading the directory,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/log/slog/value_test.go

    	}
    }
    
    func TestValueTime(t *testing.T) {
    	// Validate that all representations of times work correctly.
    	for _, tm := range []time.Time{
    		time.Time{},
    		time.Unix(0, 1e15), // UnixNanos is defined
    		time.Date(2300, 1, 1, 0, 0, 0, 0, time.UTC), // overflows UnixNanos
    	} {
    		got := TimeValue(tm).Time()
    		if !got.Equal(tm) {
    			t.Errorf("got %s (%#[1]v), want %s (%#[2]v)", got, tm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	DefaultRootCertFilePath = "./etc/certs/root-cert.pem"
    
    	// WorkloadIdentitySocketPath is the well-known path to the Unix Domain Socket for SDS.
    	WorkloadIdentitySocketPath = "./var/run/secrets/workload-spiffe-uds/socket"
    
    	// CredentialNameSocketPath is the well-known path to the Unix Domain Socket for Credential Name.
    	CredentialNameSocketPath = "./var/run/secrets/credential-uds/socket"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    The local Gradle Build Cache is located at:
    
    - **On Windows**: %USERPROFILE%\.gradle\caches
    - **On OS X / UNIX**: ~/.gradle/caches/
    
    Gradle will periodically clean up the local build cache directory by removing entries that have not been used recently to conserve disk space.
    
    == Step 4. Understanding Remote Caching
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication-handlers.go

    				st.CurrentBandwidthInBytesPerSecond = bw.CurrentBandwidthInBytesPerSecond
    				stats.ReplicationStats.Stats[arn] = st
    			}
    		}
    	}
    	stats.Uptime = UTCNow().Unix() - globalBootTime.Unix()
    
    	if err := enc.Encode(stats); err != nil {
    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. gradlew

    if "$cygwin" || "$msys" ; then
        APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
        CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
    
        JAVACMD=$( cygpath --unix "$JAVACMD" )
    
        # Now convert the arguments - kludge to limit ourselves to /bin/sh
        for arg do
            if
                case $arg in                                #(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/net/udpsock_posix.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || js || wasip1 || windows
    
    package net
    
    import (
    	"context"
    	"net/netip"
    	"syscall"
    )
    
    func sockaddrToUDP(sa syscall.Sockaddr) Addr {
    	switch sa := sa.(type) {
    	case *syscall.SockaddrInet4:
    		return &UDPAddr{IP: sa.Addr[0:], Port: sa.Port}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. internal/config/identity/openid/jwt.go

    		return err
    	}
    
    	defaultExpiryDuration, err := GetDefaultExpiration(dsecs)
    	if err != nil {
    		return err
    	}
    
    	claims["exp"] = time.Now().UTC().Add(defaultExpiryDuration).Unix() // update with new expiry.
    	return nil
    }
    
    const (
    	audClaim = "aud"
    	azpClaim = "azp"
    )
    
    // Validate - validates the id_token.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    		v1.ResourceMemory: "500",
    	}
    
    	epochTime  = metav1.NewTime(time.Unix(0, 0))
    	epochTime1 = metav1.NewTime(time.Unix(0, 1))
    	epochTime2 = metav1.NewTime(time.Unix(0, 2))
    	epochTime3 = metav1.NewTime(time.Unix(0, 3))
    	epochTime4 = metav1.NewTime(time.Unix(0, 4))
    	epochTime5 = metav1.NewTime(time.Unix(0, 5))
    	epochTime6 = metav1.NewTime(time.Unix(0, 6))
    )
    
    func getDefaultDefaultPreemptionArgs() *config.DefaultPreemptionArgs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top