Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 432 for machine1 (0.42 sec)

  1. pkg/kubelet/lifecycle/predicate_test.go

    			},
    			name: "not enough cpu and memory resource",
    		},
    		{
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					NodeName: "machine2",
    				},
    			},
    			nodeInfo: schedulerframework.NewNodeInfo(),
    			node: &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "machine1"},
    				Status:     v1.NodeStatus{Capacity: makeResources(10, 20, 32, 0, 0, 0), Allocatable: makeAllocatableResources(10, 20, 32, 0, 0, 0)},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/storage_test.go

    				Target:     api.ObjectReference{Name: "machine1", Kind: "unknown"},
    			},
    			errOK: func(err error) bool { return err != nil },
    		},
    		"emptyKind": {
    			binding: api.Binding{
    				ObjectMeta: metav1.ObjectMeta{Namespace: metav1.NamespaceDefault, Name: "foo"},
    				Target:     api.ObjectReference{Name: "machine2"},
    			},
    			errOK: func(err error) bool { return err == nil },
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. src/internal/goroot/gc.go

    	}
    	versionB, err := exec.Command(bin, "-dumpversion").Output()
    	if err != nil {
    		return
    	}
    	version := strings.TrimSpace(string(versionB))
    	machineB, err := exec.Command(bin, "-dumpmachine").Output()
    	if err != nil {
    		return
    	}
    	machine := strings.TrimSpace(string(machineB))
    
    	dirsEntries := strings.Split(string(allDirs), "\n")
    	const prefix = "libraries: ="
    	var dirs []string
    	for _, dirEntry := range dirsEntries {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/IncomingConnector.java

         *
         * @param action the action to execute on incoming connection. The supplied action is not required to be thread-safe.
         * @param allowRemote If true, only allow connections from remote machines. If false, allow only from the local machine.
         * @return the address of the endpoint which the connector is listening on.
         */
        ConnectionAcceptor accept(Action<ConnectCompletion> action, boolean allowRemote);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pilot/pkg/features/tuning.go

    	PushThrottle = func() int {
    		v := env.Register(
    			"PILOT_PUSH_THROTTLE",
    			0,
    			"Limits the number of concurrent pushes allowed. On larger machines this can be increased for faster pushes. "+
    				"If set to 0 or unset, the max will be automatically determined based on the machine size",
    		).Get()
    		if v > 0 {
    			return v
    		}
    		procs := runtime.GOMAXPROCS(0)
    		// Heuristic to scale with cores. We end up with...
    		// 1: 20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/strconv/itoa.go

    				// Avoid using r = a%b in addition to q = a/b
    				// since 64bit division and modulo operations
    				// are calculated by runtime functions on 32bit machines.
    				q := u / 1e9
    				us := uint(u - q*1e9) // u % 1e9 fits into a uint
    				for j := 4; j > 0; j-- {
    					is := us % 100 * 2
    					us /= 100
    					i -= 2
    					a[i+1] = smallsString[is+1]
    					a[i+0] = smallsString[is+0]
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputFilePropertyAnnotationHandler.java

                        .severity(Severity.ERROR)
                        .details("If you don't declare the normalization, outputs can't be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly")
                        .solution("Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    Linux containers run using the same Linux kernel of the host (machine, virtual machine, cloud server, etc). This just means that they are very lightweight (compared to full virtual machines emulating an entire operating system).
    
    This way, containers consume **little resources**, an amount comparable to running the processes directly (a virtual machine would consume much more).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            assert matcher.matches()
            return matcher.group(1)
        }
    
        static ArchitectureInternal readArch(List<String> lines) {
            def archString = readFirstHeaderValue(lines, "Machine:", "Maschine:")
            switch (archString) {
                case "Intel 80386":
                    return Architectures.forInput("x86")
                case "Advanced Micro Devices X86-64":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top