Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 379 for unmix (0.16 sec)

  1. cmd/object-handlers-common.go

    	if r.Method != http.MethodPut {
    		return false
    	}
    	// If the object doesn't have a modtime (IsZero), or the modtime
    	// is obviously garbage (Unix time == 0), then ignore modtimes
    	// and don't process the If-Modified-Since header.
    	if objInfo.ModTime.IsZero() || objInfo.ModTime.Equal(time.Unix(0, 0)) {
    		return false
    	}
    
    	// Headers to be set of object content is not going to be written to the client.
    	writeHeaders := func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta_test.go

    		&metav1.ObjectMeta{Name: "test", ResourceVersion: "1", CreationTimestamp: metav1.NewTime(time.Unix(10, 0))},
    		field.NewPath("field"),
    	); len(errs) != 1 {
    		t.Fatalf("unexpected errors: %v", errs)
    	}
    	if errs := ValidateObjectMetaUpdate(
    		&metav1.ObjectMeta{Name: "test", ResourceVersion: "1", CreationTimestamp: metav1.NewTime(time.Unix(10, 0))},
    		&metav1.ObjectMeta{Name: "test", ResourceVersion: "1"},
    		field.NewPath("field"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  3. security/pkg/pki/util/keycertbundle.go

    		return err
    	}
    
    	return nil
    }
    
    // ExtractRootCertExpiryTimestamp returns the unix timestamp when the root becomes expires.
    func (b *KeyCertBundle) ExtractRootCertExpiryTimestamp() (float64, error) {
    	return extractCertExpiryTimestamp("root cert", b.GetRootCertPem())
    }
    
    // ExtractCACertExpiryTimestamp returns the unix timestamp when the cert chain becomes expires.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. mvnw

        JAVA_HOME=$(java-config --jre-home)
      fi
    fi
    
    # For Cygwin, ensure paths are in UNIX format before anything is touched
    if $cygwin ; then
      [ -n "$JAVA_HOME" ] &&
        JAVA_HOME=$(cygpath --unix "$JAVA_HOME")
      [ -n "$CLASSPATH" ] &&
        CLASSPATH=$(cygpath --path --unix "$CLASSPATH")
    fi
    
    # For Mingw, ensure paths are in UNIX format before anything is touched
    if $mingw ; then
      [ -n "$JAVA_HOME" ] && [ -d "$JAVA_HOME" ] &&
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top