Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for creading (0.19 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    func (in *Binding) DeepCopy() *Binding {
    	if in == nil {
    		return nil
    	}
    	out := new(Binding)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Binding) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    func (in *Binding) DeepCopy() *Binding {
    	if in == nil {
    		return nil
    	}
    	out := new(Binding)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Binding) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    func TestDeleteFinalStateUnknown(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		logger, ctx := ktesting.NewTestContext(t)
    		manager, _, _, err := newTestController(ctx)
    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		addNodes(manager.nodeStore, 0, 1, nil)
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    		// DeletedFinalStateUnknown should queue the embedded DS if found.
    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/object-handlers_test.go

    	// HTTP request for testing when `objectLayer` is set to `nil`.
    	// There is no need to use an existing bucket and valid input for creating the request
    	// since the `objectLayer==nil`  check is performed before any other checks inside the handlers.
    	// The only aim is to generate an HTTP request in a way that the relevant/registered end point is evoked/called.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	// WriteHeader, to make sure we don't consume the
    	// remaining request body to try to advance to the next HTTP
    	// request. Instead, when this is set, we stop reading
    	// subsequent requests on this connection and stop reading
    	// input from it.
    	requestBodyLimitHit bool
    
    	// trailers are the headers to be sent after the handler
    	// finishes writing the body. This field is initialized from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    function create-kube-scheduler-config {
      echo "Creating kube-scheduler config file"
      mkdir -p /etc/srv/kubernetes/kube-scheduler
      cat <<EOF >/etc/srv/kubernetes/kube-scheduler/config
    ${KUBE_SCHEDULER_CONFIG}
    EOF
    }
    
    # TODO(#92143): Remove legacy policy config creation once kube-scheduler config is GA.
    function create-kubescheduler-policy-config {
      echo "Creating kube-scheduler policy config file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating pods directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsRegistrationDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins registry directory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

        suffix="-${region}"
        local staging_bucket="gs://kubernetes-staging-${project_hash}${suffix}"
    
        # Ensure the buckets are created
        if ! gsutil ls "${staging_bucket}" >/dev/null; then
          echo "Creating ${staging_bucket}"
          gsutil mb -l "${region}" -p "${PROJECT}" "${staging_bucket}"
        fi
    
        local staging_path="${staging_bucket}/${INSTANCE_PREFIX}-devel"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	mountEtcHostsFile := shouldMountHostsFile(pod, podIPs)
    	klog.V(3).InfoS("Creating hosts mount for container", "pod", klog.KObj(pod), "containerName", container.Name, "podIPs", podIPs, "path", mountEtcHostsFile)
    	mounts := []kubecontainer.Mount{}
    	var cleanupAction func()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    			return "", "", err
    		}
    	}
    	return newGoFile, objdir + gccBase + gccExt, nil
    }
    
    // disableBuildID adjusts a linker command line to avoid creating a
    // build ID when creating an object file rather than an executable or
    // shared library. Some systems, such as Ubuntu, always add
    // --build-id to every link, but we don't want a build ID when we are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top