Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for unmix (0.07 sec)

  1. src/os/user/cgo_lookup_unix.go

    // Copyright 2011 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 (cgo || darwin) && !osusergo && unix && !android
    
    package user
    
    import (
    	"fmt"
    	"runtime"
    	"strconv"
    	"strings"
    	"syscall"
    	"unsafe"
    )
    
    func current() (*User, error) {
    	return lookupUnixUid(syscall.Getuid())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    	- the target architecture, as spelled by runtime.GOARCH, set with the
    	  GOARCH environment variable.
    	- any architecture features, in the form GOARCH.feature
    	  (for example, "amd64.v2"), as detailed below.
    	- "unix", if GOOS is a Unix or Unix-like system.
    	- the compiler being used, either "gc" or "gccgo"
    	- "cgo", if the cgo command is supported (see CGO_ENABLED in
    	  'go help environment').
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    	duration, err := openid.GetDefaultExpiration(r.Form.Get(stsDurationSeconds))
    	if err != nil {
    		writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue, err)
    		return
    	}
    
    	claims[expClaim] = UTCNow().Add(duration).Unix()
    	claims[parentClaim] = user.AccessKey
    
    	// Validate that user.AccessKey's policies can be retrieved - it may not
    	// be in case the user is disabled.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/os/signal/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Package signal implements access to incoming signals.
    
    Signals are primarily used on Unix-like systems. For the use of this
    package on Windows and Plan 9, see below.
    
    # Types of signals
    
    The signals SIGKILL and SIGSTOP may not be caught by a program, and
    therefore cannot be affected by this package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. pkg/kubemark/hollow_kubelet.go

    	f.NodeLabels = opt.NodeLabels
    	f.RegisterSchedulable = true
    
    	// Config struct
    	c, err := options.NewKubeletConfiguration()
    	if err != nil {
    		panic(err)
    	}
    
    	c.ImageServiceEndpoint = "unix:///run/containerd/containerd.sock"
    	c.StaticPodURL = ""
    	c.EnableServer = true
    	c.Address = "0.0.0.0" /* bind address */
    	c.Port = int32(opt.KubeletPort)
    	c.ReadOnlyPort = int32(opt.KubeletReadOnlyPort)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/controller/podgc/gc_controller_test.go

    			_, ctx := ktesting.NewTestContext(t)
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.PodDisruptionConditions, test.enablePodDisruptionConditions)
    			creationTime := time.Unix(0, 0)
    			nodes := []*v1.Node{testutil.NewNode("node")}
    
    			pods := make([]*v1.Pod, 0, len(test.pods))
    			for _, pod := range test.pods {
    				creationTime = creationTime.Add(1 * time.Hour)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. 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)
  8. src/time/format.go

    //	01/02 03:04:05PM '06 -0700
    //
    // (January 2, 15:04:05, 2006, in time zone seven hours west of GMT).
    // That value is recorded as the constant named [Layout], listed below. As a Unix
    // time, this is 1136239445. Since MST is GMT-0700, the reference would be
    // printed by the Unix date command as:
    //
    //	Mon Jan 2 15:04:05 MST 2006
    //
    // It is a regrettable historic error that the date uses the American convention
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    		// This can be overridden by ingress.defaultEndpoint.
    		// * 127.0.0.1: send to localhost
    		// * 0.0.0.0: send to INSTANCE_IP
    		// * unix:///...: send to configured unix domain socket
    		endpointAddress := ""
    		port := 0
    		if strings.HasPrefix(ingressListener.DefaultEndpoint, model.UnixAddressPrefix) {
    			// this is a UDS endpoint. assign it as is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    		oi1.ModTime.Unix() > oi2.LastModified.Unix() && oi1.VersionID == nullVersionID {
    		return replicateNone
    	}
    	sz, _ := oi1.GetActualSize()
    
    	// needs full replication
    	if oi1.ETag != oi2.ETag ||
    		oi1.VersionID != oi2.VersionID ||
    		sz != oi2.Size ||
    		oi1.DeleteMarker != oi2.IsDeleteMarker ||
    		oi1.ModTime.Unix() != oi2.LastModified.Unix() {
    		return replicateAll
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top