Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for qsub (0.19 sec)

  1. cmd/peer-rest-common.go

    	peerRESTPolicy          = "policy"
    	peerRESTUserOrGroup     = "user-or-group"
    	peerRESTUserType        = "user-type"
    	peerRESTIsGroup         = "is-group"
    	peerRESTSignal          = "signal"
    	peerRESTSubSys          = "sub-sys"
    	peerRESTProfiler        = "profiler"
    	peerRESTSize            = "size"
    	peerRESTConcurrent      = "concurrent"
    	peerRESTDuration        = "duration"
    	peerRESTStorageClass    = "storage-class"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/testing/helperfuncs_test.go

    	notHelperCallingHelper(t, "2")
    	helperCallingHelper(t, "3")
    
    	// Check a function literal closing over t that uses Helper.
    	fn := func(msg string) {
    		t.Helper()
    		t.Error(msg)
    	}
    	fn("4")
    
    	t.Run("sub", func(t *testing.T) {
    		helper(t, "5")
    		notHelperCallingHelper(t, "6")
    		// Check that calling Helper from inside a subtest entry function
    		// works as if it were in an ordinary function call.
    		t.Helper()
    		t.Error("7")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. pkg/serviceaccount/legacy.go

    		return nil, errors.New("Token could not be validated.")
    	}
    
    	// Make sure the claims we need exist
    	if len(public.Subject) == 0 {
    		return nil, errors.New("sub claim is missing")
    	}
    	namespace := private.Namespace
    	if len(namespace) == 0 {
    		return nil, errors.New("namespace claim is missing")
    	}
    	secretName := private.SecretName
    	if len(secretName) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. internal/bucket/bandwidth/monitor_test.go

    	test1Want2[BucketOptions{Name: "bucket", ReplicationARN: "arn"}] = Details{
    		LimitInBytesPerSecond:            1024 * 1024,
    		CurrentBandwidthInBytesPerSecond: (1024 * 1024) / start.Add(2*time.Second).Sub(start.Add(1*time.Second)).Seconds(),
    	}
    
    	test2Want := make(map[BucketOptions]Details)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/go/constant/example_test.go

    		constant.MakeUint64(42),
    	}
    
    	for i, v := range vs {
    		switch v.Kind() {
    		case constant.Bool:
    			vs[i] = constant.UnaryOp(token.NOT, v, 0)
    
    		case constant.Float:
    			vs[i] = constant.UnaryOp(token.SUB, v, 0)
    
    		case constant.Int:
    			// Use 16-bit precision.
    			// This would be equivalent to ^uint16(v).
    			vs[i] = constant.UnaryOp(token.XOR, v, 16)
    		}
    	}
    
    	for _, v := range vs {
    		fmt.Println(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. security/pkg/k8s/tokenreview/k8sauthn.go

    	//  "kubernetes.io/serviceaccount/service-account.name":"example-pod-sa",
    	//  "kubernetes.io/serviceaccount/service-account.uid":"ff578a9e-65d3-11e8-aad2-42010a8a001d",
    	//  "sub":"system:serviceaccount:default:example-pod-sa"
    	//  }
    
    	// An example token review status
    	// "status":{
    	//   "authenticated":true,
    	//   "user":{
    	//     "username":"system:serviceaccount:default:example-pod-sa",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 13 17:12:41 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/archive/tar/strconv.go

    	const maxNanoSecondDigits = 9
    
    	// Split string into seconds and sub-seconds parts.
    	ss, sn, _ := strings.Cut(s, ".")
    
    	// Parse the seconds.
    	secs, err := strconv.ParseInt(ss, 10, 64)
    	if err != nil {
    		return time.Time{}, ErrHeader
    	}
    	if len(sn) == 0 {
    		return time.Unix(secs, 0), nil // No sub-second values
    	}
    
    	// Parse the nanoseconds.
    	if strings.Trim(sn, "0123456789") != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/a.out.go

    	ANEGV
    
    	ANOOP // hardware nop
    	ANOR
    	AOR
    	AREM
    	AREMU
    
    	ARFE
    
    	ASC
    	ASCV
    
    	ASGT
    	ASGTU
    
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	AROTR
    	ASUB
    	ASUBD
    	ASUBF
    
    	ASUBU
    	ASUBW
    	ADBAR
    	ASYSCALL
    
    	ATEQ
    	ATNE
    
    	AWORD
    
    	AXOR
    
    	AMASKEQZ
    	AMASKNEZ
    
    	// 64-bit
    	AMOVV
    	AMOVVL
    	AMOVVR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. security/pkg/util/jwtutil_test.go

    			} else if err != nil && tc.expectedErr != nil && err.Error() != tc.expectedErr.Error() {
    				t.Errorf("%s: Got error \"%v\", expected error \"%v\"", id, err, tc.expectedErr)
    			} else if err == nil && exp.Sub(tc.expectedExp) != time.Duration(0) {
    				t.Errorf("%s: Got expiration time: %s, expected expiration time: %s",
    					id, exp.String(), tc.expectedExp.String())
    			}
    		})
    	}
    }
    
    func TestGetAud(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top