Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for uber (0.14 sec)

  1. pkg/printers/internalversion/printers_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "binding2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Subjects: []rbac.Subject{
    					{
    						Kind: "User",
    						Name: "user-name",
    					},
    					{
    						Kind: "Group",
    						Name: "group-name",
    					},
    					{
    						Kind:      "ServiceAccount",
    						Name:      "service-account-name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    	}, {
    		name: "user",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    				URL: strPtr("https://******@****.***/"),
    			},
    		},
    		}, true),
    		expectedError: `"harry.potter": user information is not permitted`,
    	}, {
    		name: "just totally wrong",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	// is requested from an identical statement prepared on the same
    	// conn. parentStmt is used to track the dependency of this statement
    	// on its originating ("parent") statement so that parentStmt may
    	// be closed by the user without them having to know whether or not
    	// any transactions are still using it.
    	parentStmt *Stmt
    
    	mu     sync.Mutex // protects the rest of the fields
    	closed bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

          DEFAULT_GCI_PROJECT=cos-cloud
        fi
    
        # If the node image is not set, we use the latest image based on image
        # family.
        # Otherwise, we respect whatever is set by the user.
        NODE_IMAGE_PROJECT=${KUBE_GCE_NODE_PROJECT:-${DEFAULT_GCI_PROJECT}}
        local kube_node_image
    
        kube_node_image="${KUBE_GCE_NODE_IMAGE:-${GCI_VERSION}}"
        if [[ -z "${kube_node_image}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

     * SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts {@link Lists}, {@link Sets}
     * and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#maps">{@code Maps}</a>.
     *
     * @author Kevin Bourrillion
     * @author Mike Bostock
     * @author Isaac Shum
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

     * SortedMap}, {@link BiMap}, etc.). Also see this class's counterparts {@link Lists}, {@link Sets}
     * and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#maps">{@code Maps}</a>.
     *
     * @author Kevin Bourrillion
     * @author Mike Bostock
     * @author Isaac Shum
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
     *         .transform((closer, result) -> result.get("userName"), directExecutor())
     *         .catching(DBException.class, e -> "no user", directExecutor())
     *         .finishToFuture();
     * }</pre>
     *
     * In this example, when the {@code userName} {@link Future} is done, the transaction and the query
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    		if inuserns.RunningInUserNS() {
    			if utilfeature.DefaultFeatureGate.Enabled(features.KubeletInUserNamespace) {
    				// oomwatcher.NewWatcher returns "open /dev/kmsg: operation not permitted" error,
    				// when running in a user namespace with sysctl value `kernel.dmesg_restrict=1`.
    				klog.V(2).InfoS("Failed to create an oomWatcher (running in UserNS, ignoring)", "err", err)
    				oomWatcher = nil
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		}
    	}))
    	<-conn.closec
    }
    
    func TestIssue11549_Expect100(t *testing.T) {
    	req := reqBytes(`PUT /readbody HTTP/1.1
    User-Agent: PycURL/7.22.0
    Host: 127.0.0.1:9000
    Accept: */*
    Expect: 100-continue
    Content-Length: 10
    
    HelloWorldPUT /noreadbody HTTP/1.1
    User-Agent: PycURL/7.22.0
    Host: 127.0.0.1:9000
    Accept: */*
    Expect: 100-continue
    Content-Length: 10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    			warning = fmt.Errorf("workload selector specified without labels") // nolint: stylecheck
    		}
    	}
    
    	return warning, errs
    }
    
    // ValidateSidecar checks sidecar config supplied by user
    var ValidateSidecar = RegisterValidateFunc("ValidateSidecar",
    	func(cfg config.Config) (Warning, error) {
    		errs := Validation{}
    		rule, ok := cfg.Spec.(*networking.Sidecar)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top