Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 374 for STRICT (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    	// return types is only used for validation. The claims variable that's available
    	// to the claim mapping expressions is a map[string]interface{}, so we can't
    	// really know what the return type is during compilation. Strict type checking
    	// is done during evaluation.
    	return []*celgo.Type{celgo.AnyType}
    }
    
    var _ ExpressionAccessor = &ClaimValidationCondition{}
    
    // ClaimValidationCondition is a CEL expression that validates a claim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/LICENSE

    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/MissingLockStateException.java

        }
        public MissingLockStateException(DisplayName displayName) {
            super("Locking strict mode: " + displayName.getCapitalizedDisplayName() + " is locked but does not have lock state.");
        }
    
        @Override
        public List<String> getResolutions() {
            return RESOLUTIONS;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        @get:Input
        @Deprecated("Will be removed in Gradle 9.0")
        abstract val strict: Property<Boolean>
    
        init {
            outputs.doNotCacheIf(
                "Generated accessors can only be cached in strict mode."
            ) {
                @Suppress("DEPRECATION")
                !strict.get()
            }
        }
    
        /**
         *  ## Computation and sharing of type-safe accessors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/BSD-3-Clause.txt

    TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/configset.go

    			return &UnsupportedConfigVersionError{
    				OldVersion:     gvk.GroupVersion(),
    				CurrentVersion: cb.GroupVersion,
    				Document:       cloneBytes(yaml),
    			}
    		}
    
    		// Print warnings for strict errors
    		if err := strict.VerifyUnmarshalStrict([]*runtime.Scheme{Scheme}, gvk, yaml); err != nil {
    			klog.Warning(err.Error())
    		}
    
    		// As long as we support only component configs with a single kind, this is allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/typeUtils.kt

    import org.jetbrains.kotlin.fir.types.ConeClassLikeType
    import org.jetbrains.kotlin.fir.types.abbreviatedType
    import org.jetbrains.kotlin.fir.types.toRegularClassSymbol
    
    /**
     * Returns whether [subClass] is a strict subtype of [superClass]. Resolves [subClass] to [FirResolvePhase.SUPER_TYPES].
     */
    fun isSubClassOf(subClass: FirClass, superClass: FirClass, useSiteSession: FirSession, allowIndirectSubtyping: Boolean = true): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// owner: @cici37
    	// alpha: v1.30
    	//
    	// StrictCostEnforcementForVAP is used to apply strict CEL cost validation for ValidatingAdmissionPolicy.
    	// It will be set to off by default for certain time of period to prevent the impact on the existing users.
    	// It is strongly recommended to enable this feature gate as early as possible.
    	// The strict cost is specific for the extended libraries whose cost defined under k8s/apiserver/pkg/cel/library.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/net/http/cookie_test.go

    	{
    		&Cookie{Name: "cookie-13", Value: "samesite-lax", SameSite: SameSiteLaxMode},
    		"cookie-13=samesite-lax; SameSite=Lax",
    	},
    	{
    		&Cookie{Name: "cookie-14", Value: "samesite-strict", SameSite: SameSiteStrictMode},
    		"cookie-14=samesite-strict; SameSite=Strict",
    	},
    	{
    		&Cookie{Name: "cookie-15", Value: "samesite-none", SameSite: SameSiteNoneMode},
    		"cookie-15=samesite-none; SameSite=None",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. cmd/metacache-entries.go

    func (e metaCacheEntry) hasPrefix(s string) bool {
    	return strings.HasPrefix(e.name, s)
    }
    
    // matches returns if the entries have the same versions.
    // If strict is false we allow signatures to mismatch.
    func (e *metaCacheEntry) matches(other *metaCacheEntry, strict bool) (prefer *metaCacheEntry, matches bool) {
    	if e == nil && other == nil {
    		return nil, true
    	}
    	if e == nil {
    		return other, false
    	}
    	if other == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top