Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 379 for unmix (0.04 sec)

  1. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    // be called once.
    func (m *Stub) Start() error {
    	klog.InfoS("Starting device plugin server")
    	err := m.cleanup()
    	if err != nil {
    		return err
    	}
    
    	sock, err := net.Listen("unix", m.socket)
    	if err != nil {
    		return err
    	}
    
    	m.wg.Add(1)
    	m.server = grpc.NewServer([]grpc.ServerOption{}...)
    	pluginapi.RegisterDevicePluginServer(m.server, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

                "/tulry/nested-cli/buildSrc/buildSrc",
                "/tulry/nested/buildSrc"
            ]
        }
    
        @Requires(UnitTestPreconditions.Unix)
        def 'can handle more dirs on Unix'() {
            expect:
            from(pathList.collect { new File(it) }).contains(target) == result
    
            where:
            pathList                       | target               | result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    					},
    				},
    				PortMap: map[string]uint32{
    					"http": 80,
    				},
    			},
    		},
    		{
    			name: "unix domain socket",
    			wle: config.Config{
    				Meta: config.Meta{
    					Namespace: "ns1",
    				},
    				Spec: &networking.WorkloadEntry{
    					Address:        "unix://foo/bar",
    					ServiceAccount: "scooby",
    				},
    			},
    			out: &model.WorkloadInstance{
    				Namespace: "ns1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. src/archive/tar/reader.go

    			prefix = p.parseString(star.prefix())
    			hdr.AccessTime = time.Unix(p.parseNumeric(star.accessTime()), 0)
    			hdr.ChangeTime = time.Unix(p.parseNumeric(star.changeTime()), 0)
    		case format.has(FormatGNU):
    			hdr.Format = format
    			var p2 parser
    			gnu := tr.blk.toGNU()
    			if b := gnu.accessTime(); b[0] != 0 {
    				hdr.AccessTime = time.Unix(p2.parseNumeric(b), 0)
    			}
    			if b := gnu.changeTime(); b[0] != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/imports/build.go

    	}
    
    	if tags[name] {
    		return true
    	}
    
    	switch name {
    	case "linux":
    		return tags["android"]
    	case "solaris":
    		return tags["illumos"]
    	case "darwin":
    		return tags["ios"]
    	case "unix":
    		return unixOS[cfg.BuildContext.GOOS]
    	default:
    		return false
    	}
    }
    
    // eval is like
    //
    //	x.Eval(func(tag string) bool { return matchTag(tag, tags) })
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. pkg/serviceaccount/claims.go

    	warnafter := private.Kubernetes.WarnAfter
    	if warnafter != nil && *warnafter != 0 {
    		if nowTime.After(warnafter.Time()) {
    			secondsAfterWarn := nowTime.Unix() - warnafter.Time().Unix()
    			auditInfo := fmt.Sprintf("subject: %s, seconds after warning threshold: %d", public.Subject, secondsAfterWarn)
    			audit.AddAuditAnnotation(ctx, "authentication.k8s.io/stale-token", auditInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    	keyLenErrFmt                   = "secret is not of the expected length, got %d, expected one of %v"
    	unsupportedSchemeErrFmt        = "unsupported scheme %q for KMS provider, only unix is supported"
    	unsupportedKMSAPIVersionErrFmt = "unsupported apiVersion %s for KMS provider, only v1 and v2 are supported"
    	atLeastOneRequiredErrFmt       = "at least one %s is required"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/loong64/include /tmp/loong64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build loong64 && linux
    
    package unix
    
    const (
    	SYS_IO_SETUP                = 0
    	SYS_IO_DESTROY              = 1
    	SYS_IO_SUBMIT               = 2
    	SYS_IO_CANCEL               = 3
    	SYS_IO_GETEVENTS            = 4
    	SYS_SETXATTR                = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/net/http/cookie_test.go

    		{&Cookie{Name: "valid-expires", Value: "foo", Path: "/bar", Domain: "example.com", Expires: time.Unix(0, 0)}, true},
    		{&Cookie{Name: "valid-max-age", Value: "foo", Path: "/bar", Domain: "example.com", MaxAge: 60}, true},
    		{&Cookie{Name: "valid-all-fields", Value: "foo", Path: "/bar", Domain: "example.com", Expires: time.Unix(0, 0), MaxAge: 0}, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    == Linux installation
    
    .Installing with a package manager
    [%collapsible]
    ====
    
    link:http://sdkman.io[SDKMAN!] is a tool for managing parallel versions of multiple Software Development Kits on most Unix-like systems (macOS, Linux, Cygwin, Solaris and FreeBSD).
    Gradle is deployed and maintained by SDKMAN!:
    
    ----
    ❯ sdk install gradle
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top