Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 368 for unmix (0.09 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     Class:                             ELF32
     Data:                              2's complement, little endian
     Version:                           1 (current)
     OS/ABI:                            UNIX - System V
     ABI Version:                       0
     Type:                              EXEC (Executable file)
     Machine:                           Intel 80386
     Version:                           0x1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        @Requires([UnitTestPreconditions.Windows, IntegTestPreconditions.IsEmbeddedExecutor])
        def "can pass absolute Unix-like paths to script on Windows"() {
            file("run.sh") << '''#!/bin/sh
    # convert paths into absolute Unix-like paths
    BUILD_FILE=$(cygpath --absolute --unix build.gradle)
    SRC_DIR=$(cygpath --absolute --unix src)
    # pass them to the generated start script
    build/install/sample/bin/sample "$BUILD_FILE" "$SRC_DIR"
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    	summaryprovidertest "k8s.io/kubernetes/pkg/kubelet/server/stats/testing"
    )
    
    func TestCollectResourceMetrics(t *testing.T) {
    	// a static timestamp: 2021-06-23 05:11:18.302091597 +0800
    	staticTimestamp := time.Unix(0, 1624396278302091597)
    	testTime := metav1.NewTime(staticTimestamp)
    	interestedMetrics := []string{
    		"scrape_error",
    		"resource_scrape_error",
    		"node_cpu_usage_seconds_total",
    		"node_memory_working_set_bytes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  4. src/net/server_test.go

    // servers
    func TestUnixAndUnixpacketServer(t *testing.T) {
    	var unixAndUnixpacketServerTests = []struct {
    		network, address string
    	}{
    		{"unix", testUnixAddr(t)},
    		{"unix", "@nettest/go/unix"},
    
    		{"unixpacket", testUnixAddr(t)},
    		{"unixpacket", "@nettest/go/unixpacket"},
    	}
    
    	const N = 3
    
    	for i, tt := range unixAndUnixpacketServerTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    		})
    	}
    }
    
    func TestRecordEtcdRequest(t *testing.T) {
    	registry := metrics.NewKubeRegistry()
    
    	// modify default sinceInSeconds to constant NOW
    	sinceInSeconds = func(t time.Time) float64 {
    		return time.Unix(0, 300*int64(time.Millisecond)).Sub(t).Seconds()
    	}
    
    	testedMetrics := []metrics.Registerable{
    		etcdRequestCounts,
    		etcdRequestErrorCounts,
    		etcdRequestLatency,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/archive/tar/writer_test.go

    				Uname:    "dsymonds",
    				Gname:    "eng",
    				ModTime:  time.Unix(1246508266, 0),
    			}, nil},
    			testWrite{"Kilts", 5, nil},
    
    			testHeader{Header{
    				Typeflag: TypeReg,
    				Name:     "small2.txt",
    				Size:     11,
    				Mode:     0640,
    				Uid:      73025,
    				Uname:    "dsymonds",
    				Gname:    "eng",
    				Gid:      5000,
    				ModTime:  time.Unix(1245217492, 0),
    			}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  7. cmd/erasure-healing-common.go

    	if etag, count := commonETags(etags); count >= quorum {
    		return etag
    	}
    	return ""
    }
    
    // Beginning of unix time is treated as sentinel value here.
    var (
    	timeSentinel     = time.Unix(0, 0).UTC()
    	timeSentinel1970 = time.Unix(0, 1).UTC() // 1970 used for special cases when xlmeta.version == 0
    )
    
    // Boot modTimes up to disk count, setting the value to time sentinel.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. cmd/bucket-replication-stats.go

    }
    
    func (r *ReplicationStats) getSRMetricsForNode() SRMetricsSummary {
    	if r == nil {
    		return SRMetricsSummary{}
    	}
    
    	m := SRMetricsSummary{
    		Uptime:        UTCNow().Unix() - globalBootTime.Unix(),
    		Queued:        r.qCache.getSiteStats(),
    		ActiveWorkers: r.ActiveWorkers(),
    		Metrics:       r.srStats.get(),
    		Proxied:       r.pCache.getSiteStats(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/os/file.go

    		}
    		dir += "/lib"
    
    	default: // Unix
    		dir = Getenv("XDG_CONFIG_HOME")
    		if dir == "" {
    			dir = Getenv("HOME")
    			if dir == "" {
    				return "", errors.New("neither $XDG_CONFIG_HOME nor $HOME are defined")
    			}
    			dir += "/.config"
    		}
    	}
    
    	return dir, nil
    }
    
    // UserHomeDir returns the current user's home directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. src/net/error_test.go

    	}
    
    	for _, network := range []string{"tcp", "udp", "ip:4294967296", "unix", "unixpacket", "unixgram"} {
    		var err error
    		switch network {
    		case "tcp":
    			_, err = DialTCP(network, nil, &TCPAddr{Port: 1 << 16})
    		case "udp":
    			_, err = DialUDP(network, nil, &UDPAddr{Port: 1 << 16})
    		case "ip:4294967296":
    			_, err = DialIP(network, nil, nil)
    		case "unix", "unixpacket", "unixgram":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top