Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Uncommon (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		expectBookmarkOnEtcd         bool
    	}{
    		{
    			name:                       "common RPC > both get bookmarks",
    			separateCacheWatchRPC:      false,
    			expectBookmarkOnEtcd:       true,
    			expectBookmarkOnWatchCache: true,
    		},
    		{
    			name:                         "common RPC & watch cache context > both get bookmarks",
    			separateCacheWatchRPC:        false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    	}
    
    	filterOnlineDisksInplace(fi, onlineMeta, onlineDisks)
    	for i := range onlineMeta {
    		// verify metadata is valid, it has similar erasure info
    		// as well as common modtime, if modtime is not possible
    		// verify if it has common "etag" at least.
    		if onlineMeta[i].IsValid() && onlineMeta[i].Erasure.Equal(fi.Erasure) {
    			ok := onlineMeta[i].ModTime.Equal(modTime)
    			if modTime.IsZero() || modTime.Equal(timeSentinel) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            val typeParameter = partiallyAppliedSymbol.symbol.typeParameters.singleOrNull() ?: return emptyMap()
            return mapOf(typeParameter to elementType)
        }
    
        // TODO: Refactor common code with FirElement.toKtCallInfo() when other FirResolvables are handled
        private fun FirElement.collectCallCandidates(
            psi: KtElement,
            resolveCalleeExpressionOfFunctionCall: Boolean,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    		return
    	}
    
    	if maxUploads < 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidMaxUploads), r.URL)
    		return
    	}
    
    	if keyMarker != "" {
    		// Marker not common with prefix is not implemented.
    		if !HasPrefix(keyMarker, prefix) {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrNotImplemented), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. src/time/format.go

    func appendInt(b []byte, x int, width int) []byte {
    	u := uint(x)
    	if x < 0 {
    		b = append(b, '-')
    		u = uint(-x)
    	}
    
    	// 2-digit and 4-digit fields are the most common in time formats.
    	utod := func(u uint) byte { return '0' + byte(u) }
    	switch {
    	case width == 2 && u < 1e2:
    		return append(b, utod(u/1e1), utod(u%1e1))
    	case width == 4 && u < 1e4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrOverlappingConfigs: {
    		Code:           "InvalidArgument",
    		Description:    "Configurations overlap. Configurations on the same bucket cannot share a common event type.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrUnsupportedNotification: {
    		Code:           "UnsupportedNotification",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. cmd/iam.go

    	hasSessionPolicy, isAllowedSP := isAllowedBySessionPolicy(args)
    	if hasSessionPolicy {
    		return isAllowedSP && (isOwnerDerived || combinedPolicy.IsAllowed(args))
    	}
    
    	// Sub policy not set, this is most common since subPolicy
    	// is optional, use the inherited policies.
    	return isOwnerDerived || combinedPolicy.IsAllowed(args)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    	// Verify that an implicit catch all egress listener will not bind to privileged ports
    	// if proxy is not using Iptables and cannot bind to privileged ports (1-1023).
    	//
    	// It is very common for the catch all egress listener to match services on ports 80 and 443.
    	// Therefore, the default behavior should not force users to start from looking for a workaround.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top