Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 296 for 128M (0.04 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                (options as JUnitPlatformOptions).excludeTags("org.gradle.test.fixtures.Flaky")
            }
            FlakyTestStrategy.ONLY -> {
                // Note there is an issue: https://github.com/spockframework/spock/issues/1288
                // JUnit Platform `includeTags` works before Spock engine, thus excludes all spock tests.
                // As a workaround, we tag all non-spock integration tests and use `includeTags(none() | Flaky)` here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/internal/zstd/block.go

    	}
    
    	seqHdr := data[off]
    	off++
    	if seqHdr == 0 {
    		return 0, off, nil
    	}
    
    	var seqCount int
    	if seqHdr < 128 {
    		seqCount = int(seqHdr)
    	} else if seqHdr < 255 {
    		if off >= len(data) {
    			return 0, 0, r.makeEOFError(off)
    		}
    		seqCount = ((int(seqHdr) - 128) << 8) + int(data[off])
    		off++
    	} else {
    		if off+1 >= len(data) {
    			return 0, 0, r.makeEOFError(off)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1beta1/types.go

    	// This field cannot be empty for new Events and it can have at most 128 characters.
    	// +optional
    	ReportingInstance string `json:"reportingInstance,omitempty" protobuf:"bytes,5,opt,name=reportingInstance"`
    
    	// action is what action was taken/failed regarding to the regarding object. It is machine-readable.
    	// This field can have at most 128 characters.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 11:06:50 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/events/v1/types.go

    	// This field cannot be empty for new Events and it can have at most 128 characters.
    	ReportingInstance string `json:"reportingInstance,omitempty" protobuf:"bytes,5,opt,name=reportingInstance"`
    
    	// action is what action was taken/failed regarding to the regarding object. It is machine-readable.
    	// This field cannot be empty for new Events and it can have at most 128 characters.
    	Action string `json:"action,omitempty" protobuf:"bytes,6,name=action"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    	DMEXCL   = 0x20000000
    	DMMOUNT  = 0x10000000
    	DMAUTH   = 0x08000000
    	DMTMP    = 0x04000000
    	DMREAD   = 0x4
    	DMWRITE  = 0x2
    	DMEXEC   = 0x1
    )
    
    const (
    	STATMAX    = 65535
    	ERRMAX     = 128
    	STATFIXLEN = 49
    )
    
    // Mount and bind flags
    const (
    	MREPL   = 0x0000
    	MBEFORE = 0x0001
    	MAFTER  = 0x0002
    	MORDER  = 0x0003
    	MCREATE = 0x0004
    	MCACHE  = 0x0010
    	MMASK   = 0x0017
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_table_ppc64le.s

    DATA ·IEEEConst+1264(SB)/8,$0x00000001d1559a42
    DATA ·IEEEConst+1272(SB)/8,$0x000000010192bcc2
    
    	/* x^179264 mod p(x), x^179200 mod p(x) */
    DATA ·IEEEConst+1280(SB)/8,$0x00000001f3e05ecc
    DATA ·IEEEConst+1288(SB)/8,$0x0000000074838d50
    
    	/* x^178240 mod p(x), x^178176 mod p(x) */
    DATA ·IEEEConst+1296(SB)/8,$0x0000000104ddd2cc
    DATA ·IEEEConst+1304(SB)/8,$0x000000001b20f520
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. test/gcstring.go

    	setup()
    	runtime.GC()
    	runtime.GC()
    	time.Sleep(10*time.Millisecond)
    	runtime.GC()
    	runtime.GC()
    	time.Sleep(10*time.Millisecond)
    }
    
    func setup() {
    	var Ts []interface{}
    	buf := make([]byte, 128)
    	
    	for i := 0; i < 10000; i++ {
    		s := string(buf)
    		t := &T{ptr: new(*int)}
    		runtime.SetFinalizer(t.ptr, func(**int) { panic("*int freed too early") })
    		Ts = append(Ts, t)
    		things = append(things, s[len(s):])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 872 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    			Name:              "storage_db_total_size_in_bytes",
    			Help:              "Total size of the storage database file physically allocated in bytes.",
    			StabilityLevel:    compbasemetrics.ALPHA,
    			DeprecatedVersion: "1.28.0",
    		},
    		[]string{"endpoint"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/syscall/sockcmsg_unix_other.go

    		if sizeofPtr == 8 {
    			salign = 4
    		}
    	case "netbsd", "openbsd":
    		// NetBSD and OpenBSD armv7 require 64-bit alignment.
    		if runtime.GOARCH == "arm" {
    			salign = 8
    		}
    		// NetBSD aarch64 requires 128-bit alignment.
    		if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
    			salign = 16
    		}
    	}
    
    	return (salen + salign - 1) & ^(salign - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ValidatingAdmissionPolicy) APILifecycleIntroduced() (major, minor int) {
    	return 1, 28
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top