Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for unmix (0.43 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	// Use {{.Expired}} to handle the token expiry date string with correct timezone handling.
    	v := struct {
    		URL     string
    		Expired string
    	}{
    		URL:     ts.URL,
    		Expired: fmt.Sprintf("%v", time.Unix(expired.Unix(), 0)),
    	}
    	c.claims = replace(c.claims, &v)
    	c.openIDConfig = replace(c.openIDConfig, &v)
    	c.options.JWTAuthenticator.Issuer.URL = replace(c.options.JWTAuthenticator.Issuer.URL, &v)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    						Value: "Gopher",
    					},
    					// This should override the Country, above.
    					{
    						Type:  []int{2, 5, 4, 6},
    						Value: "NL",
    					},
    				},
    			},
    			NotBefore: time.Unix(1000, 0),
    			NotAfter:  time.Unix(100000, 0),
    
    			SignatureAlgorithm: test.sigAlgo,
    
    			SubjectKeyId: []byte{1, 2, 3, 4},
    			KeyUsage:     KeyUsageCertSign,
    
    			ExtKeyUsage:        testExtKeyUsage,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    			nodeName,
    			hash == pod.Labels[apps.ControllerRevisionHashLabelKey],
    			ready,
    			now.Unix(),
    			pod.Name,
    			pod.CreationTimestamp.Unix(),
    			readyLast.Unix(),
    		))
    	}
    	sort.Strings(lines)
    	for _, line := range lines {
    		logger.Info(line)
    	}
    }
    
    func TestDeleteFinalStateUnknown(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. cmd/testdata/decryptObjectInfo.json.zst

    ealed-Key":"IAAfAJjw20jgIZ40mnKk/os4T/nBMxz+AdwLUaZIX6Mlw==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/vendor/golang.org/x/sys/unix/syscall_unix_gc.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"QjbcegZNqIkER1KQpMXe=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAJYjCk2oqcr...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    				Bind:  "127.0.0.1",
    			},
    			"",
    		},
    		{
    			"bind unix path with invalid port",
    			&networking.Server{
    				Hosts: []string{"foo.bar.com"},
    				Port:  &networking.Port{Number: 7, Name: "http", Protocol: "http"},
    				Bind:  "unix://@foobar",
    			},
    			"port number must be 0 for unix domain socket",
    		},
    		{
    			"bind unix path",
    			&networking.Server{
    				Hosts: []string{"foo.bar.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    		}
    	}
    	return nil
    }
    
    // ValidateUnixAddress validates that the string is a valid unix domain socket path.
    func ValidateUnixAddress(addr string) error {
    	if len(addr) == 0 {
    		return errors.New("unix address must not be empty")
    	}
    
    	// Allow unix abstract domain sockets whose names start with @
    	if strings.HasPrefix(addr, "@") {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    					{
    						ID:        kubecontainer.ContainerID{ID: "c1"},
    						Name:      "containerA",
    						StartedAt: time.Unix(1, 0).UTC(),
    						State:     kubecontainer.ContainerStateRunning,
    					},
    					{
    						ID:        kubecontainer.ContainerID{ID: "c2"},
    						Name:      "containerB",
    						StartedAt: time.Unix(2, 0).UTC(),
    						State:     kubecontainer.ContainerStateRunning,
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		oi1.ModTime.Unix() > oi2.LastModified.Unix() && oi1.VersionID == nullVersionID {
    		return replicateNone
    	}
    	sz, _ := oi1.GetActualSize()
    
    	// needs full replication
    	if oi1.ETag != oi2.ETag ||
    		oi1.VersionID != oi2.VersionID ||
    		sz != oi2.Size ||
    		oi1.DeleteMarker != oi2.IsDeleteMarker ||
    		oi1.ModTime.Unix() != oi2.LastModified.Unix() {
    		return replicateAll
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		})
    	}
    }
    
    func TestWatchTable(t *testing.T) {
    	obj := genericapitesting.Simple{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "ns1", ResourceVersion: "10", CreationTimestamp: metav1.NewTime(time.Unix(1, 0)), UID: types.UID("abcdef0123")},
    		Other:      "foo",
    	}
    
    	m, err := meta.Accessor(&obj)
    	if err != nil {
    		t.Fatal(err)
    	}
    	partial := meta.AsPartialObjectMetadata(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //     GOARCH environment variable.
    //   - any architecture features, in the form GOARCH.feature
    //     (for example, "amd64.v2"), as detailed below.
    //   - "unix", if GOOS is a Unix or Unix-like system.
    //   - the compiler being used, either "gc" or "gccgo"
    //   - "cgo", if the cgo command is supported (see CGO_ENABLED in
    //     'go help environment').
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top