Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for because3 (0.12 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/conversion.go

    }
    
    // Convert_kubeadm_Discovery_To_v1beta4_Discovery is required because there is no Discovery.Timeout in v1beta4
    func Convert_kubeadm_Discovery_To_v1beta4_Discovery(in *kubeadm.Discovery, out *Discovery, s conversion.Scope) error {
    	return autoConvert_kubeadm_Discovery_To_v1beta4_Discovery(in, out, s)
    }
    
    // Convert_v1beta4_Discovery_To_kubeadm_Discovery is required because there is no Discovery.Timeout in v1beta4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. buildscripts/minio-upgrade.sh

    	echo "Sleeping for nginx"
    	sleep 20
    }
    
    __init__() {
    	sudo apt install curl -y
    	export GOPATH=/tmp/gopath
    	export PATH=${PATH}:${GOPATH}/bin
    
    	go install github.com/minio/mc@latest
    
    	## this is needed because github actions don't have
    	## docker-compose on all runners
    	go install github.com/docker/compose/v2/cmd@latest
    	mv -v /tmp/gopath/bin/cmd /tmp/gopath/bin/docker-compose
    
    	cleanup
    
    	TAG=minio/minio:dev make docker
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Name(customResourceDefinition.Name).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		Name(customResourceDefinition.Name).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	lastStatusReportTime time.Time
    
    	// syncNodeStatusMux is a lock on updating the node status, because this path is not thread-safe.
    	// This lock is used by Kubelet.syncNodeStatus and Kubelet.fastNodeStatusUpdate functions and shouldn't be used anywhere else.
    	syncNodeStatusMux sync.Mutex
    
    	// updatePodCIDRMux is a lock on updating pod CIDR, because this path is not thread-safe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	// One common case this prevents is a kubelet restart reading pods before services and some pod not having the
    	// KUBERNETES_SERVICE_HOST injected because we didn't wait a short time for services to sync before proceeding.
    	// The KUBERNETES_SERVICE_HOST link is special because it is unconditionally injected into pods and is read by the
    	// in-cluster-config for pod clients
    	if !kubetypes.IsStaticPod(pod) && !kl.serviceHasSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    func fuzzDNS(obj *kubeadm.DNS, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    	obj.Disabled = false
    }
    
    func fuzzComponentConfigMap(obj *kubeadm.ComponentConfigMap, c fuzz.Continue) {
    	// This is intentionally empty because component config does not exists in the public api
    	// (empty mean all ComponentConfigs fields nil, and this is necessary for getting roundtrip passing)
    }
    
    func fuzzLocalEtcd(obj *kubeadm.LocalEtcd, c fuzz.Continue) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    							// We cannot have two servers with same port name because we need the port name to distinguish one HTTPS server from another.
    							// We cannot merge two HTTPS servers even if their TLS settings have same path to the keys, because we don't know if the contents
    							// of the keys are same. So we treat them as effectively different TLS settings.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    	// Block until either a request is received or a push is triggered.
    	// We need 2 go routines because 'read' blocks in Recv().
    	go s.receiveDelta(con, ids)
    
    	// Wait for the proxy to be fully initialized before we start serving traffic. Because
    	// initialization doesn't have dependencies that will block, there is no need to add any timeout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    		dir, subset, svcHost, port := model.ParseSubsetKey(cluster)
    		// Inbound clusters don't have svchost in its format. So don't add it to serviceClusters.
    		if dir == model.TrafficDirectionInbound {
    			// Append all inbound clusters because in both stow/delta we always build all inbound clusters.
    			// In reality, the delta building is only for outbound clusters. We need to revist here once we support delta for inbound.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top