Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 206 for Shardz (0.13 sec)

  1. pkg/registry/core/serviceaccount/storage/token.go

    		req.Spec.ExpirationSeconds = r.maxExpirationSeconds
    	}
    
    	// Tweak expiration for safe transition of projected service account token.
    	// Warn (instead of fail) after requested expiration time.
    	// Fail after hard-coded extended expiration time.
    	// Only perform the extension when token is pod-bound.
    	var warnAfter int64
    	exp := req.Spec.ExpirationSeconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. cmd/erasure-metadata.go

    			// In this case, parity == 0 implies that this object version is a
    			// delete marker
    			readQuorum = N/2 + 1
    		}
    		if occ < readQuorum {
    			// Ignore this parity since we don't have enough shards for read quorum
    			continue
    		}
    
    		if occ > maxOcc {
    			maxOcc = occ
    			cparity = parity
    		}
    	}
    
    	if maxOcc == 0 {
    		// Did not found anything useful
    		return -1
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/Utf8Test.java

        assertNotWellFormed(0xF0, 0xA4, 0xAD, 0xC0);
        // Special cases for byte2
        assertNotWellFormed(0xF0, 0x8F, 0xAD, 0xA2);
        assertNotWellFormed(0xF4, 0x90, 0xAD, 0xA2);
      }
    
      /** Tests some hard-coded test cases. */
      public void testSomeSequences() {
        // Empty
        assertWellFormed();
        // One-byte characters, including control characters
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cni/pkg/plugin/plugin.go

    	loggingOptions := log.DefaultOptions()
    	loggingOptions.OutputPaths = []string{"stderr"}
    	loggingOptions.JSONEncoding = true
    	if cfg != nil {
    		// Tee all logs to UDS. Stdout will go to kubelet (hard to access, UDS will be read by the CNI DaemonSet and exposed
    		// by normal `kubectl logs`
    		if cfg.LogUDSAddress != "" {
    			loggingOptions.WithTeeToUDS(cfg.LogUDSAddress, constants.UDSLogPath)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/runtime/stkframe.go

    		unsafe.Sizeof(abi.RegArgs{}) > 0 && isReflect {
    		// For reflect.makeFuncStub and reflect.methodValueCall,
    		// we need to fake the stack object record.
    		// These frames contain an internal/abi.RegArgs at a hard-coded offset.
    		// This offset matches the assembly code on amd64 and arm64.
    		objs = methodValueCallFrameObjs[:]
    	} else {
    		p := funcdata(f, abi.FUNCDATA_StackObjects)
    		if p != nil {
    			n := *(*uintptr)(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    	if resourceQuota == nil {
    		return false, fmt.Errorf("expected non-nil quota")
    	}
    	// verify the quota matches on at least one resource
    	matchResource := len(matchFunc(quota.ResourceNames(resourceQuota.Status.Hard))) > 0
    	// by default, no scopes matches all
    	matchScope := true
    	for _, scope := range getScopeSelectorsFromQuota(resourceQuota) {
    		innerMatch, err := scopeFunc(scope, item)
    		if err != nil {
    			return false, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/archive/tar/writer_test.go

    			testWrite{"hello\n", 6, nil},
    			testClose{nil},
    		},
    	}, {
    		// This file was produced using GNU tar v1.26:
    		//	echo "Slartibartfast" > file.txt
    		//	ln file.txt hard.txt
    		//	tar -b 1 --format=ustar -c -f hardlink.tar file.txt hard.txt
    		file: "testdata/hardlink.tar",
    		tests: []testFnc{
    			testHeader{Header{
    				Typeflag: TypeReg,
    				Name:     "file.txt",
    				Size:     15,
    				Mode:     0644,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/fp_test.go

    	floatsToInts(t, -1.0, -1)
    	floatsToInts(t, -128.0, -128)
    
    	floatsToUints(t, 0.0, 0)
    	floatsToUints(t, 1.0, 1)
    	floatsToUints(t, 255.0, 255)
    
    	for j := uint(0); j < 24; j++ {
    		// Avoid hard cases in the construction
    		// of the test inputs.
    		v := int64(1<<62) | int64(1<<(62-j))
    		w := uint64(v)
    		f := float32(v)
    		d := float64(v)
    		expectUint64(t, "2**62...", F32toU64_ssa(f), w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/inline/inlheur/scoring.go

    			}
    		}
    
    		if argProps&ActualExprIsConcreteConvIface != 0 {
    			// FIXME: ideally here it would be nice to make a
    			// distinction between the inlinable case and the
    			// non-inlinable case, but this is hard to do. Example:
    			//
    			//    type I interface { Tiny() int; Giant() }
    			//    type Conc struct { x int }
    			//    func (c *Conc) Tiny() int { return 42 }
    			//    func (c *Conc) Giant() { <huge amounts of code> }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. docs/en/data/github_sponsors.yml

      - login: DMantis
        avatarUrl: https://avatars.githubusercontent.com/u/9536869?v=4
        url: https://github.com/DMantis
      - login: hard-coders
        avatarUrl: https://avatars.githubusercontent.com/u/9651103?u=95db33927bbff1ed1c07efddeb97ac2ff33068ed&v=4
        url: https://github.com/hard-coders
      - login: supdann
        avatarUrl: https://avatars.githubusercontent.com/u/9986994?u=9671810f4ae9504c063227fee34fd47567ff6954&v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top