Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for unmix (0.06 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message MicroTime {
      // Represents seconds of UTC time since Unix epoch
      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message MicroTime {
      // Represents seconds of UTC time since Unix epoch
      // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
      // 9999-12-31T23:59:59Z inclusive.
      optional int64 seconds = 1;
    
      // Non-negative fractions of a second at nanosecond resolution. Negative
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    	issuer, err := x509.ParseCertificate(testRSACertificateIssuer)
    	if err != nil {
    		panic(err)
    	}
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(issuer)
    
    	now := func() time.Time { return time.Unix(1476984729, 0) }
    
    	const alpnProtocol = "golang"
    	const serverName = "example.golang"
    	var scts = [][]byte{[]byte("dummy sct 1"), []byte("dummy sct 2")}
    	var ocsp = []byte("dummy ocsp")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	// format we don't recognize.
    	unknownObjFormat = false
    
    	theline string
    )
    
    func Lflag(ctxt *Link, arg string) {
    	ctxt.Libdir = append(ctxt.Libdir, arg)
    }
    
    /*
     * Unix doesn't like it when we write to a running (or, sometimes,
     * recently run) binary, so remove the output file before writing it.
     * On Windows 7, remove() can force a subsequent create() to fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/os/os_test.go

    	}
    }
    
    func TestChtimesToUnixZero(t *testing.T) {
    	file := newFile("chtimes-to-unix-zero", t)
    	fn := file.Name()
    	defer Remove(fn)
    	if _, err := file.Write([]byte("hi")); err != nil {
    		t.Fatal(err)
    	}
    	if err := file.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    	unixZero := time.Unix(0, 0)
    	if err := Chtimes(fn, unixZero, unixZero); err != nil {
    		t.Fatalf("Chtimes failed: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            result.getProblems().add(problem);
                            continue;
                        }
    
                        if (Os.IS_WINDOWS) {
                            // we don't canonicalize on unix to avoid interfering with symlinks
                            try {
                                moduleFile = moduleFile.getCanonicalFile();
                            } catch (IOException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		if pp.Path[0] == 0 {
    			// "Abstract" Unix domain socket.
    			// Rewrite leading NUL as @ for textual display.
    			// (This is the standard convention.)
    			// Not friendly to overwrite in place,
    			// but the callers below don't care.
    			pp.Path[0] = '@'
    		}
    
    		// Assume path ends at NUL.
    		// This is not technically the Linux semantics for
    		// abstract Unix domain sockets--they are supposed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    	issuer, err := x509.ParseCertificate(testRSACertificateIssuer)
    	if err != nil {
    		panic(err)
    	}
    
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(issuer)
    
    	now := func() time.Time { return time.Unix(1476984729, 0) }
    
    	sentinelErr := errors.New("TestVerifyPeerCertificate")
    
    	verifyPeerCertificateCallback := func(called *bool, rawCerts [][]byte, validatedChains [][]*x509.Certificate) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    // license that can be found in the LICENSE file.
    
    //go:build !js
    
    package pprof
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"internal/abi"
    	"internal/profile"
    	"internal/syscall/unix"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/big"
    	"os"
    	"regexp"
    	"runtime"
    	"runtime/debug"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    	_ "unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    			UID:       podSandbox.Metadata.Uid,
    			Namespace: podSandbox.Metadata.Namespace,
    		},
    		// The StartTime in the summary API is the pod creation time.
    		StartTime: metav1.NewTime(time.Unix(0, podSandbox.CreatedAt)),
    	}
    	if podSandbox.State == runtimeapi.PodSandboxState_SANDBOX_NOTREADY {
    		podStats.CPU = nil
    		podStats.Memory = nil
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top