Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Machines (0.23 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

                    (Const32 <typ.UInt32> [int32(c)]))
                  (Const32 <typ.UInt32> [int32((1<<32)%c)])))
              (Const32 <typ.UInt32> [int32(c)]))))
    
    // For 64-bit divides on 64-bit machines
    // (64-bit divides on 32-bit machines are lowered to a runtime call by the walk pass.)
    (Div64u x (Const64 [c])) && umagicOK64(c) && config.RegSize == 8 && umagic64(c).m&1 == 0 && config.useHmul =>
      (Rsh64Ux64 <typ.UInt64>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    	podB := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test"},
    		Spec:       example.PodSpec{NodeName: "machine2"},
    	}
    	podAWithResourceVersion := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test", ResourceVersion: "7"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    // preloadWorkerCount is the number of concurrent goroutines that can load
    // packages. Experimentally, there are diminishing returns with more than
    // 4 workers. This was measured on the following machines.
    //
    // * MacBookPro with a 4-core Intel Core i7 CPU
    // * Linux workstation with 6-core Intel Xeon CPU
    // * Linux workstation with 24-core Intel Xeon CPU
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    func withID(status v1.ContainerStatus, id string) v1.ContainerStatus {
    	status.ContainerID = id
    	return status
    }
    
    func TestPodPhaseWithRestartAlways(t *testing.T) {
    	desiredState := v1.PodSpec{
    		NodeName: "machine",
    		Containers: []v1.Container{
    			{Name: "containerA"},
    			{Name: "containerB"},
    		},
    		RestartPolicy: v1.RestartPolicyAlways,
    	}
    
    	tests := []struct {
    		pod           *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        # shellcheck disable=SC2086
        if ! ${gcloud} compute instance-templates create \
          "${template_name}" \
          --project "${PROJECT}" \
          --machine-type "${machine_type}" \
          --boot-disk-type "${NODE_DISK_TYPE}" \
          --boot-disk-size "${NODE_DISK_SIZE}" \
          "${node_image_flags[@]}" \
          --service-account "${NODE_SERVICE_ACCOUNT}" \
    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. src/net/http/server.go

    // than this, the server, to be paranoid, instead sends a
    // "Connection close" response.
    //
    // This number is approximately what a typical machine's TCP buffer
    // size is anyway.  (if we have the bytes on the machine, we might as
    // well read them)
    const maxPostHandlerReadBytes = 256 << 10
    
    func checkWriteHeaderCode(code int) {
    	// Issue 22880: require valid WriteHeader status codes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// been force deleted or static pods that have been updated.
    	// https://github.com/kubernetes/kubernetes/issues/116970
    	podManager kubepod.Manager
    
    	// podWorkers is responsible for driving the lifecycle state machine of each pod. The worker is
    	// notified of config changes, updates, periodic reconciliation, container runtime updates, and
    	// evictions of all desired pods and will invoke reconciliation methods per pod in separate
    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. pkg/kubelet/eviction/helpers_test.go

    					time: metav1.Date(2016, 1, 1, 0, 0, 0, 0, locationUTC),
    				},
    			},
    			last:   signalObservations{},
    			result: []evictionapi.Threshold{updatedThreshold},
    		},
    		"time-machine": {
    			thresholds: []evictionapi.Threshold{updatedThreshold},
    			observations: signalObservations{
    				evictionapi.SignalMemoryAvailable: signalObservation{
    					time: metav1.Date(2016, 1, 1, 0, 0, 0, 0, locationUTC),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // arguments when it is run.
    //
    // Quoted strings use Go syntax and are evaluated before execution; a
    // quoted string appears as a single argument to the generator.
    //
    // To convey to humans and machine tools that code is generated,
    // generated source should have a line that matches the following
    // regular expression (in Go syntax):
    //
    //	^// Code generated .* DO NOT EDIT\.$
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    		containerStatuses = append(containerStatuses, *status)
    	}
    
    	sort.Sort(kubetypes.SortedContainerStatuses(containerStatuses))
    	return containerStatuses
    }
    
    // ServeLogs returns logs of current machine.
    func (kl *Kubelet) ServeLogs(w http.ResponseWriter, req *http.Request) {
    	// TODO: allowlist logs we are willing to serve
    	kl.logServer.ServeHTTP(w, req)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top