Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 379 for unmix (0.25 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    import spock.lang.Specification
    
    class JavaProcessStackTracesMonitorSpec extends Specification {
    
        @Requires(UnitTestPreconditions.NotWindows)
        def 'can extract process info from unix ps()'() {
            given:
            def output = '''
              PID TTY      STAT   TIME COMMAND
     1401 ?        Ss     0:05 /lib/systemd/systemd --user
     1409 ?        S      0:00 (sd-pam)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/debug/dwarf/line.go

    		}
    		*entry = next
    	}
    }
    
    // pathIsAbs reports whether path is an absolute path (or "full path
    // name" in DWARF parlance). This is in "whatever form makes sense for
    // the host system", so this accepts both UNIX-style and DOS-style
    // absolute paths. We avoid the filepath package because we want this
    // to behave the same regardless of our host system and because we
    // don't know what system the paths came from.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. src/archive/tar/common.go

    		if ts.IsZero() {
    			return // Always okay
    		}
    		if !fitsInBase256(size, ts.Unix()) {
    			whyNoGNU = fmt.Sprintf("GNU cannot encode %s=%v", name, ts)
    			format.mustNotBe(FormatGNU)
    		}
    		isMtime := paxKey == paxMtime
    		fitsOctal := fitsInOctal(size, ts.Unix())
    		if (isMtime && !fitsOctal) || !isMtime {
    			whyNoUSTAR = fmt.Sprintf("USTAR cannot encode %s=%v", name, ts)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

            binChildSpec.into((Callable<Object>) pluginExtension::getExecutableDir);
            binChildSpec.from(startScripts);
            binChildSpec.filePermissions(permissions -> permissions.unix("rwxr-xr-x"));
    
            CopySpec childSpec = project.copySpec();
            childSpec.from(project.file("src/dist"));
            childSpec.with(libChildSpec);
            childSpec.with(binChildSpec);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. schema/field.go

    				} else if field.AutoCreateTime == UnixMillisecond || field.AutoUpdateTime == UnixMillisecond {
    					field.ReflectValueOf(ctx, value).SetInt(data.UnixMilli())
    				} else {
    					field.ReflectValueOf(ctx, value).SetInt(data.Unix())
    				}
    			case *time.Time:
    				if data != nil {
    					if field.AutoCreateTime == UnixNanosecond || field.AutoUpdateTime == UnixNanosecond {
    						field.ReflectValueOf(ctx, value).SetInt(data.UnixNano())
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    	maxGroupID = math.MaxInt32
    )
    
    // IsValidGroupID tests that the argument is a valid Unix GID.
    func IsValidGroupID(gid int64) []string {
    	if minGroupID <= gid && gid <= maxGroupID {
    		return nil
    	}
    	return []string{InclusiveRangeError(minGroupID, maxGroupID)}
    }
    
    // IsValidUserID tests that the argument is a valid Unix UID.
    func IsValidUserID(uid int64) []string {
    	if minUserID <= uid && uid <= maxUserID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/poll/fd_windows.go

    	case "file", "dir":
    		fd.kind = kindFile
    	case "console":
    		fd.kind = kindConsole
    	case "pipe":
    		fd.kind = kindPipe
    	case "tcp", "tcp4", "tcp6",
    		"udp", "udp4", "udp6",
    		"ip", "ip4", "ip6",
    		"unix", "unixgram", "unixpacket":
    		fd.kind = kindNet
    	default:
    		return "", errors.New("internal error: unknown network type " + net)
    	}
    	fd.isFile = fd.kind != kindNet
    
    	var err error
    	if pollable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. pkg/scheduler/eventhandlers_test.go

    			Changed:       false,
    			OldConditions: []v1.NodeCondition{{Type: v1.NodeDiskPressure, Status: v1.ConditionTrue, LastHeartbeatTime: metav1.Unix(1, 0)}},
    			NewConditions: []v1.NodeCondition{{Type: v1.NodeDiskPressure, Status: v1.ConditionTrue, LastHeartbeatTime: metav1.Unix(2, 0)}},
    		},
    		{
    			Name:          "new node has more healthy conditions",
    			Changed:       true,
    			OldConditions: []v1.NodeCondition{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top