Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for 2G (0.02 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    	}
    	switch {
    	case math.Abs(ratio) >= 99.95 && math.Abs(ratio) <= 100.05:
    		return "  100%"
    	case math.Abs(ratio) >= 1.0:
    		return fmt.Sprintf("%5.2f%%", ratio)
    	default:
    		return fmt.Sprintf("%5.2g%%", ratio)
    	}
    }
    
    // Unit includes a list of aliases representing a specific unit and a factor
    // which one can multiple a value in the specified unit by to get the value
    // in terms of the base unit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    //
    //     <Quantity>.isLessThan(<quantity>) <bool>
    //     <Quantity>.isGreaterThan(<quantity>) <bool>
    //     <Quantity>.compareTo(<quantity>) <int>
    //
    // Examples:
    //
    // quantity("200M").compareTo(quantity("0.2G")) // returns 0
    // quantity("50M").compareTo(quantity("50Mi")) // returns -1
    // quantity("50Mi").compareTo(quantity("50M")) // returns 1
    // quantity("150Mi").isGreaterThan(quantity("100Mi")) // returns true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

        def "matches GradleDaemon on linux"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            def other = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
    
            when:
            options.with {
                minHeapSize = "1024m"
                maxHeapSize = "2g"
            }
            other.with {
                minHeapSize = "1g"
                maxHeapSize = "2048m"
            }
    
            then:
            options.isCompatibleWith(other)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    000001e0  dc da 4f f5 d9 5c 9c b1  ea f8 1b f7 43 90 c0 c0  |..O..\......C...|
    000001f0  fd 82 56 e3 71 15 18 5e  7e 5c 61 5e b3 80 c1 1c  |..V.q..^~\a^....|
    00000200  22 92 32 67 23 f6 3b 74  e4 20 4e 1f fb f8 89 55  |".2g#.;t. N....U|
    00000210  e7 3c 18 30 24 77 7c 33  5c 89 91 60 65 14 06 9e  |.<.0$w|3\..`e...|
    00000220  e2 6d f0 07 84 4b b4 14  e8 17 03 03 00 a3 a7 e1  |.m...K..........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. src/go/token/position.go

    		panic(fmt.Sprintf("invalid size %d (should be >= 0)", size))
    	}
    	// base >= s.base && size >= 0
    	base += size + 1 // +1 because EOF also has a position
    	if base < 0 {
    		panic("token.Pos offset overflow (> 2G of source code in file set)")
    	}
    	// add the file to the file set
    	s.base = base
    	s.files = append(s.files, f)
    	s.last.Store(f)
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. plugin/pkg/admission/limitranger/admission_test.go

    	initInputs := []api.ResourceRequirements{getResourceRequirements(getComputeResourceList("200m", "1G"), getComputeResourceList("400m", "2G"))}
    	pod = validPodInit(validPod("limit-memory", 1, input), initInputs...)
    	expected = input
    	mergePodResourceRequirements(&pod, &defaultRequirements)
    	for i := range pod.Spec.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				`quantity(self.val2) == quantity("0.2G") && quantity("0.2G") == quantity("200M")`,
    				`quantity("2M") == quantity("0.002G") && quantity("2000k") == quantity("2M") && quantity("0.002G") == quantity("2000k")`,
    				`quantity(self.val1).isLessThan(quantity("100M"))`,
    				`quantity(self.val2).isGreaterThan(quantity("50M"))`,
    				`quantity(self.val2).compareTo(quantity("0.2G")) == 0`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			volumeName:             volumetesting.FailVolumeExpansion,
    			supportRemount:         true,
    			pvSize:                 resource.MustParse("10G"),
    			pvcStatusSize:          resource.MustParse("2G"),
    		},
    	}
    	modes := []v1.PersistentVolumeMode{v1.PersistentVolumeBlock, v1.PersistentVolumeFilesystem}
    
    	for modeIndex := range modes {
    		for tcIndex := range tests {
    			mode := modes[modeIndex]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    	// restriction for ISA 3.1 unless it becomes problematic.
    	t := ldr.SymAddr(rs) + r.Add()
    	if t < 0 || t >= 1<<31 {
    		ldr.Errorf(s, "relocation for %s is too big (>=2G): 0x%x", ldr.SymName(s), ldr.SymValue(rs))
    	}
    
    	// Note, relocations imported from external objects may not have cleared bits
    	// within a relocatable field. They need cleared before applying the relocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top