Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for creading (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/serve_test.go

    			_, err := io.Copy(io.Discard, req.Body)
    			if !errors.Is(err, os.ErrDeadlineExceeded) {
    				t.Errorf("server timed out reading request body: got err %v; want os.ErrDeadlineExceeded", err)
    			}
    			res.Write([]byte(respBody))
    		}), func(ts *httptest.Server) {
    			ts.Config.ReadHeaderTimeout = -1 // don't time out while reading headers
    			ts.Config.ReadTimeout = timeout
    			t.Logf("Server.Config.ReadTimeout = %v", timeout)
    		})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    	pod, err = clientset.CoreV1().Pods(pod.GetNamespace()).Create(ctx, pod, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Creating pod: %v", err)
    	}
    
    	// Await for the Pod to appear in the podStore to ensure that the pod exists when cleaning up the Job.
    	// In a production environment, there wouldn't be these guarantees, but the Pod would be cleaned up
    	// by the orphan pod worker, when the Pod finishes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            writeJournalInceptionTimestamp(daysAgo(8))
    
            when: 'cleaning build is started'
            def cleaningBarrier = blockingHttpServer.expectAndBlock("cleaning")
            def cleaningBuild = executer.withTasks("waitForCleaningBarrier").withArgument("--no-daemon").start()
    
            then: 'cleaning build starts and waits on its barrier'
            cleaningBarrier.waitForAllPendingCalls()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top