Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 562 for Shardz (0.18 sec)

  1. testing/performance/docs/check-rev.sh

    cp subprojects/performance/build/test-results/performanceTest/TEST-org.gradle.performance.$TESTNAME.xml ~/.gradle-bisect-results/result_${result}_${hash}_${datets}.xml
    git reset --hard
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/defaults_others.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    // DefaultEvictionHard includes default options for hard eviction.
    var DefaultEvictionHard = map[string]string{
    	"memory.available":  "100Mi",
    	"nodefs.available":  "10%",
    	"imagefs.available": "15%",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 20:46:56 UTC 2022
    - 828 bytes
    - Viewed (0)
  3. src/runtime/os_linux_generic.go

    //go:build !mips && !mipsle && !mips64 && !mips64le && !s390x && !ppc64 && linux
    
    package runtime
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 65
    	_SIG_BLOCK   = 0
    	_SIG_UNBLOCK = 1
    	_SIG_SETMASK = 2
    )
    
    // It's hard to tease out exactly how big a Sigset is, but
    // rt_sigprocmask crashes if we get it wrong, so if binaries
    // are running, this is right.
    type sigset [2]uint32
    
    var sigset_all = sigset{^uint32(0), ^uint32(0)}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 01:56:24 UTC 2022
    - 870 bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/defaults_linux.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    // DefaultEvictionHard includes default options for hard eviction.
    var DefaultEvictionHard = map[string]string{
    	"memory.available":   "100Mi",
    	"nodefs.available":   "10%",
    	"nodefs.inodesFree":  "5%",
    	"imagefs.available":  "15%",
    	"imagefs.inodesFree": "5%",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 16:48:53 UTC 2023
    - 887 bytes
    - Viewed (0)
  5. pkg/volume/git_repo/git_repo_test.go

    					dir: "",
    				},
    				{
    					cmd: []string{"git", "checkout", revision},
    					dir: "/target_dir",
    				},
    				{
    					cmd: []string{"git", "reset", "--hard"},
    					dir: "/target_dir",
    				},
    			},
    			isExpectedFailure: false,
    		},
    		{
    			name: "target-dir-no-revision",
    			vol: &v1.Volume{
    				Name: "vol1",
    				VolumeSource: v1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. guava/src/com/google/common/annotations/VisibleForTesting.java

     * bad design, and it does not prevent anyone from using the declaration---and experience has shown
     * that they will. If the method breaks the encapsulation of its class, then its internal
     * representation will be hard to change. Instead, use <a
     * href="http://errorprone.info/bugpattern/RestrictedApi">RestrictedApiChecker</a>, which enforces
     * fine-grained visibility policies.
     *
     * @author Johannes Henkel
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 30 22:25:16 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue26213/jni.h

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // It's going to be hard to include a whole real JVM to test this.
    // So we'll simulate a really easy JVM using just the parts we need.
    
    // This is the relevant part of jni.h.
    
    // On Android NDK16, jobject is defined like this in C and C++
    typedef void* jobject;
    
    typedef jobject jclass;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 874 bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/provider/providers.go

    // limitations under the License.
    
    package provider
    
    // ID defines underlying platform supporting service registry
    type ID string
    
    const (
    	// Mock is a service registry that contains 2 hard-coded test services
    	Mock ID = "Mock"
    	// Kubernetes is a service registry backed by k8s API server
    	Kubernetes ID = "Kubernetes"
    	// External is a service registry for externally provided ServiceEntries
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 20 16:41:15 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. cmd/bitrot-whole.go

    	"hash"
    	"io"
    )
    
    // Implementation to calculate bitrot for the whole file.
    type wholeBitrotWriter struct {
    	disk      StorageAPI
    	volume    string
    	filePath  string
    	shardSize int64 // This is the shard size of the erasure logic
    	hash.Hash       // For bitrot hash
    }
    
    func (b *wholeBitrotWriter) Write(p []byte) (int, error) {
    	err := b.disk.AppendFile(context.TODO(), b.volume, b.filePath, p)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. test/maymorestack.go

    	// Trigger a stack growth on at least some calls to
    	// anotherFunc to test that mayMoreStack is called outside the
    	// morestack loop. It's also important that it is called
    	// before (not after) morestack, but that's hard to test.
    	var x [1 << 10]byte
    
    	if n > 1 {
    		anotherFunc(n - 1)
    	}
    
    	runtime.KeepAlive(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 00:52:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top