Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,600 for mega (0.04 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            def distZipFile = file('build/distributions/mega-app.zip')
            distZipFile.assertIsFile()
    
            def distZipDir = file('build/unzip')
            distZipFile.usingNativeTools().unzipTo(distZipDir)
            checkApplicationImage('mega-app', distZipDir.file('mega-app'))
    
            def distTarFile = file('build/distributions/mega-app.tar')
            distTarFile.assertIsFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/main/assemblies/files/service.bat

    if "%unit%" == "K" goto kilo
    if "%unit%" == "m" goto mega
    if "%unit%" == "M" goto mega
    if "%unit%" == "g" goto giga
    if "%unit%" == "G" goto giga
    
    rem no unit found, must be bytes; consider the whole value
    set conv=%value%
    rem convert to KB
    set /a conv=%conv% / 1024
    :kilo
    rem convert to MB
    set /a conv=%conv% / 1024
    goto mega
    :giga
    rem convert to MB
    set /a conv=%conv% * 1024
    :mega
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemoryAmountTest.groovy

        }
    
        def "parse invalid string notation"() {
            when:
            MemoryAmount.parseNotation('invalid')
    
            then:
            thrown IllegalArgumentException
        }
    
        def "of kilo mega giga tera bytes"() {
            expect:
            MemoryAmount.ofKiloBytes(23) == MemoryAmount.of('23k')
            MemoryAmount.ofMegaBytes(23) == MemoryAmount.of('23m')
            MemoryAmount.ofGigaBytes(23) == MemoryAmount.of('23g')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/amount.go

    func (s Scale) infScale() inf.Scale {
    	return inf.Scale(-s) // inf.Scale is upside-down
    }
    
    const (
    	Nano  Scale = -9
    	Micro Scale = -6
    	Milli Scale = -3
    	Kilo  Scale = 3
    	Mega  Scale = 6
    	Giga  Scale = 9
    	Tera  Scale = 12
    	Peta  Scale = 15
    	Exa   Scale = 18
    )
    
    var (
    	Zero = int64Amount{}
    
    	// Used by quantity strings - treat as read only
    	zeroBytes = []byte("0")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 19:42:28 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"medal_military":                       "\U0001f396\ufe0f",
    	"medal_sports":                         "\U0001f3c5",
    	"medical_symbol":                       "\u2695\ufe0f",
    	"mega":                                 "\U0001f4e3",
    	"melon":                                "\U0001f348",
    	"memo":                                 "\U0001f4dd",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/meta.go

    func (meta *ObjectMeta) SetGenerateName(generateName string) { meta.GenerateName = generateName }
    func (meta *ObjectMeta) GetUID() types.UID                   { return meta.UID }
    func (meta *ObjectMeta) SetUID(uid types.UID)                { meta.UID = uid }
    func (meta *ObjectMeta) GetResourceVersion() string          { return meta.ResourceVersion }
    func (meta *ObjectMeta) SetResourceVersion(version string)   { meta.ResourceVersion = version }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/meta.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/uuid"
    )
    
    // WipeObjectMetaSystemFields erases fields that are managed by the system on ObjectMeta.
    func WipeObjectMetaSystemFields(meta metav1.Object) {
    	meta.SetCreationTimestamp(metav1.Time{})
    	meta.SetUID("")
    	meta.SetDeletionTimestamp(nil)
    	meta.SetDeletionGracePeriodSeconds(nil)
    	meta.SetSelfLink("")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 19 01:47:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package meta
    
    import (
    	"fmt"
    	"reflect"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  9. samples/ambient-argo/meta-application.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: meta-application
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      destination:
        name: in-cluster
        namespace: argocd
        server: ''
      sources:
      - path: istio
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
      - path: application
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  10. cmd/testdata/xl.meta-corrupt.gz

    xl.meta-corrupt...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 14 16:07:46 UTC 2022
    - 1M bytes
    - Viewed (0)
Back to top