Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for uber (0.05 sec)

  1. go.sum

    go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A=
    go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
    go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
    go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU=
    go.uber.org/mock v0.4.0/go.mod h1:a6FSlNadKUHUa9IP5Vyt1zh4fC7uAwxMutEAscFbkZc=
    go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	"go.uber.org/mock/gomock"
    	core "k8s.io/client-go/testing"
    	"k8s.io/mount-utils"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		if cStatus.User == nil {
    			return nil
    		}
    
    		user := &v1.ContainerUser{}
    		if cStatus.User.Linux != nil {
    			user.Linux = &v1.LinuxContainerUser{
    				UID:                cStatus.User.Linux.UID,
    				GID:                cStatus.User.Linux.GID,
    				SupplementalGroups: cStatus.User.Linux.SupplementalGroups,
    			}
    		}
    
    		return user
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        create-kubelet-kubeconfig "${KUBELET_APISERVER}"
      fi
    }
    
    function create-kubeproxy-user-kubeconfig {
      echo "Creating kube-proxy user kubeconfig file"
      cat <<EOF >/var/lib/kube-proxy/kubeconfig
    apiVersion: v1
    kind: Config
    users:
    - name: kube-proxy
      user:
        token: ${KUBE_PROXY_TOKEN}
    clusters:
    - name: local
      cluster:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // A few common code hosting sites have special syntax:
    //
    //	Bitbucket (Git, Mercurial)
    //
    //		import "bitbucket.org/user/project"
    //		import "bitbucket.org/user/project/sub/directory"
    //
    //	GitHub (Git)
    //
    //		import "github.com/user/project"
    //		import "github.com/user/project/sub/directory"
    //
    //	Launchpad (Bazaar)
    //
    //		import "launchpad.net/project"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    		},
    	}
    	testPodStaus := func(user *kubecontainer.ContainerUser) *kubecontainer.PodStatus {
    		testKubeContainerStatus := kubecontainer.Status{
    			Name:      testContainerName,
    			ID:        testContainerID,
    			Image:     "img",
    			State:     kubecontainer.ContainerStateRunning,
    			StartedAt: nowTime,
    			User:      user,
    		}
    		return &kubecontainer.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // unescaped) to tell the user why their request was bad. It should
    // be plain text without user info or other embedded errors.
    func badRequestError(e string) error { return statusError{StatusBadRequest, e} }
    
    // statusError is an error used to respond to a request with an HTTP status.
    // The text should be plain text without user info or other embedded errors.
    type statusError struct {
    	code int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		"User-Agent": {"foo"},
    		"Other":      {"bar"},
    	}
    
    	res, err := c.Get("https://dummy.tld/") // https to force a CONNECT
    	if err == nil {
    		res.Body.Close()
    		t.Errorf("unexpected success")
    	}
    
    	r := <-reqc
    	if got, want := r.Header.Get("User-Agent"), "foo"; got != want {
    		t.Errorf("CONNECT request User-Agent = %q; want %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    }
    
    ArrayRef<Operation*> ShapeInference::GetCallers(func::FuncOp fn) {
      return symbol_users_.getUsers(fn);
    }
    
    void ShapeInference::EnqueueCallers(func::FuncOp fn) {
      for (auto user : GetCallers(fn)) {
        auto func = user->getParentOfType<func::FuncOp>();
        if (func) enqueue(func);
      }
    }
    
    bool ShapeInference::UpdateTypeAndInsertIncompatibleUseCasts(Type new_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. 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)
Back to top