Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 368 for unmix (0.05 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

        /**
         * Returns the line separator for Windows.
         */
        public static String getWindowsLineSeparator() {
            return "\r\n";
        }
    
        /**
         * Returns the line separator for Unix.
         */
        public static String getUnixLineSeparator() {
            return "\n";
        }
    
        /**
         * Returns the line separator for this platform.
         */
        public static String getPlatformLineSeparator() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/os/types_windows.go

    				// See comment in fs.Mode.
    			} else {
    				m |= ModeIrregular
    			}
    		}
    	}
    	return m
    }
    
    func (fs *fileStat) ModTime() time.Time {
    	return time.Unix(0, fs.LastWriteTime.Nanoseconds())
    }
    
    // Sys returns syscall.Win32FileAttributeData for file fs.
    func (fs *fileStat) Sys() any {
    	return &syscall.Win32FileAttributeData{
    		FileAttributes: fs.FileAttributes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/net/dial.go

    		switch network {
    		case "tcp", "tcp4", "tcp6":
    		case "udp", "udp4", "udp6":
    		case "ip", "ip4", "ip6":
    			if needsProto {
    				return "", 0, UnknownNetworkError(network)
    			}
    		case "unix", "unixgram", "unixpacket":
    		default:
    			return "", 0, UnknownNetworkError(network)
    		}
    		return network, 0, nil
    	}
    	afnet = network[:i]
    	switch afnet {
    	case "ip", "ip4", "ip6":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. src/archive/tar/writer.go

    	var spb []byte
    	blk := tw.templateV7Plus(hdr, f.formatString, f.formatNumeric)
    	if !hdr.AccessTime.IsZero() {
    		f.formatNumeric(blk.toGNU().accessTime(), hdr.AccessTime.Unix())
    	}
    	if !hdr.ChangeTime.IsZero() {
    		f.formatNumeric(blk.toGNU().changeTime(), hdr.ChangeTime.Unix())
    	}
    	// TODO(dsnet): Re-enable this when adding sparse support.
    	// See https://golang.org/issue/22735
    	/*
    		if hdr.Typeflag == TypeGNUSparse {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top