Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for valid (0.06 sec)

  1. cmd/sts-handlers.go

    	stsPolicy                 = "Policy"
    	stsToken                  = "Token"
    	stsRoleArn                = "RoleArn"
    	stsWebIdentityToken       = "WebIdentityToken"
    	stsWebIdentityAccessToken = "WebIdentityAccessToken" // only valid if UserInfo is enabled.
    	stsDurationSeconds        = "DurationSeconds"
    	stsLDAPUsername           = "LDAPUsername"
    	stsLDAPPassword           = "LDAPPassword"
    
    	// STS API action constants
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                        }
                    }
                    else -> throw IllegalStateException("Unexpected configuration cache fingerprint: $input")
                }
            }
            return CheckedFingerprint.Valid
        }
    
        suspend fun ReadContext.checkProjectScopedFingerprint(): CheckedFingerprint {
            // TODO: log some debug info
            var firstReason: InvalidationReason? = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_gc_manager.go

    				id:          image,
    				imageRecord: *record,
    			})
    		} else {
    			imageID := getImageIDFromTuple(image)
    			// Ensure imageID is valid or else continue
    			if imageID == "" {
    				im.recorder.Eventf(im.nodeRef, v1.EventTypeWarning, "ImageID is not valid, skipping, ImageID: %v", imageID)
    				continue
    			}
    			images = append(images, evictionInfo{
    				id:          imageID,
    				imageRecord: *record,
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/math/big/float.go

    		panic("empty mantissa for y")
    	}
    }
    
    // z = x + y, ignoring signs of x and y for the addition
    // but using the sign of z for rounding the result.
    // x and y must have a non-empty mantissa and valid exponent.
    func (z *Float) uadd(x, y *Float) {
    	// Note: This implementation requires 2 shifts most of the
    	// time. It is also inefficient if exponents or precisions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    // this server or from the remote.
    type Connection struct {
    	// NextID is the next ID that can be used (atomic).
    	NextID uint64
    
    	// LastPong is last pong time (atomic)
    	// Only valid when StateConnected.
    	LastPong int64
    
    	// State of the connection (atomic)
    	state State
    
    	// Non-atomic
    	Remote string
    	Local  string
    
    	// ID of this connection instance.
    	id uuid.UUID
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    // Constraint that attribute is string with value either "SAME" or "VALID"
    def IsSameOrValid : AttrConstraint<
        CPred<"$_self.cast<StringAttr>().getValue() == \"SAME\" || " #
              "$_self.cast<StringAttr>().getValue() == \"VALID\"">,
        "'SAME' or 'VALID' paddings">;
    
    def TFL_GetMirrorPaddingType : NativeCodeCall<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server_test.go

    		g.Expect(resp.Body.Close()).To(Succeed())
    	}
    }
    
    func TestInitOIDC(t *testing.T) {
    	tests := []struct {
    		name      string
    		expectErr bool
    		jwtRule   string
    	}{
    		{
    			name:      "valid jwt rule",
    			expectErr: false,
    			jwtRule:   `{"issuer": "foo", "jwks_uri": "baz", "audiences": ["aud1", "aud2"]}`,
    		},
    		{
    			name:      "invalid jwt rule",
    			expectErr: true,
    			jwtRule:   "invalid",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. cmd/bucket-policy-handlers_test.go

    	// HTTP request for testing when `objectLayer` is set to `nil`.
    	// There is no need to use an existing bucket and valid input for creating the request
    	// since the `objectLayer==nil`  check is performed before any other checks inside the handlers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    }
    
    // IsValidObjectPrefix verifies whether the prefix is a valid object name.
    // Its valid to have a empty prefix.
    func IsValidObjectPrefix(object string) bool {
    	if hasBadPathComponent(object) {
    		return false
    	}
    	if !utf8.ValidString(object) {
    		return false
    	}
    	if strings.Contains(object, `//`) {
    		return false
    	}
    	// This is valid for AWS S3 but it will never
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. cmd/handler-utils.go

    	// Add more supported headers here.
    }
    
    // isDirectiveValid - check if tagging-directive is valid.
    func isDirectiveValid(v string) bool {
    	// Check if set metadata-directive is valid.
    	return isDirectiveCopy(v) || isDirectiveReplace(v)
    }
    
    // Check if the directive COPY is requested.
    func isDirectiveCopy(value string) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top