Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,108 for 200M (0.1 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    	medium := newPod("medium-priority", 1, []v1.Container{
    		newContainer("medium-priority", newResourceList("100m", "100Mi", ""), newResourceList("200m", "200Mi", "")),
    	}, nil)
    	high := newPod("high-priority", 12534, []v1.Container{
    		newContainer("high-priority", newResourceList("200m", "200Mi", ""), newResourceList("200m", "200Mi", "")),
    	}, nil)
    
    	pods := []*v1.Pod{high, medium, low}
    	orderedBy(priority).Sort(pods)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	// Node Allocatable Flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    	// verify all values are specified as required on the quota
    	newPod := validPod("not-allowed-pod", 1, getResourceRequirements(getResourceList("100m", "2Gi"), getResourceList("200m", "")))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	smallRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "100m",
    		v1.ResourceMemory: "100",
    	}
    	mediumRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "200m",
    		v1.ResourceMemory: "200",
    	}
    	largeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "300m",
    		v1.ResourceMemory: "300",
    	}
    	veryLargeRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "500m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	fakeRuntime, _, m, err := createTestRuntimeManager()
    	m.machineInfo.MemoryCapacity = 17179860387 // 16GB
    	assert.NoError(t, err)
    
    	cpu100m := resource.MustParse("100m")
    	cpu200m := resource.MustParse("200m")
    	mem100M := resource.MustParse("100Mi")
    	mem200M := resource.MustParse("200Mi")
    	cpuPolicyRestartNotRequired := v1.ContainerResizePolicy{ResourceName: v1.ResourceCPU, RestartPolicy: v1.NotRequired}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation_test.go

    	valid := []string{
    		"net.foo.bar",
    		"kernel.shmmax",
    		"net.ipv4.conf.enp3s0/200.forwarding",
    		"net/ipv4/conf/enp3s0.200/forwarding",
    	}
    	invalid := []string{
    		"i..nvalid",
    		"_invalid",
    	}
    
    	invalidWithHostNet := []string{
    		"net.ipv4.conf.enp3s0/200.forwarding",
    		"net/ipv4/conf/enp3s0.200/forwarding",
    	}
    
    	invalidWithHostIPC := []string{
    		"kernel.shmmax",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      sed -i -e "s@{{cpurequest}}@${KUBE_SCHEDULER_CPU_REQUEST}@g" "${src_file}"
      sed -i -e "s@{{runAsUser}}@${KUBE_SCHEDULER_RUNASUSER:-2001}@g" "${src_file}"
      sed -i -e "s@{{runAsGroup}}@${KUBE_SCHEDULER_RUNASGROUP:-2001}@g" "${src_file}"
      cp "${src_file}" /etc/kubernetes/manifests
    }
    
    # Starts cluster autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/time/example_test.go

    	t, _ = time.Parse("Jan 2, 2006 at 3:04pm (MST)", "Feb 3, 2013 at 7:54pm (UTC)")
    	fmt.Println(t.GoString())
    
    	// Output:
    	// time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
    	// time.Date(2009, time.November, 10, 23, 1, 0, 0, time.UTC)
    	// time.Date(2009, time.December, 10, 23, 1, 0, 0, time.UTC)
    	// time.Date(2013, time.February, 3, 19, 54, 0, 0, time.UTC)
    }
    
    func ExampleParse() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Automated Interface (generates HTML Report Files).
     *
     *  Feb 2002      Initial implementation (AK)
     *
     *  13-Feb-2002   Single interface to automated_run_tests. (AK)
     *
     *  20-Jul-2004   New interface, doxygen comments. (JDS)
     */
    
    /** @file
     * Automated testing interface with xml output (user interface).
     */
    /** @addtogroup Automated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

     */
    
    /*
     *  Contains Memory Related Defines to use internal routines to detect Memory Leak
     *  in Debug Versions
     *
     *  18/Jun/2002   Memory Debug Functions. (AK)
     *
     *  17-Jul-2004   New interface for global function names. (JDS)
     *
     *  05-Sep-2004   Added internal test interface. (JDS)
     */
    
    /** @file
     *  Memory management functions (user interface).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top