Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for STRICT (0.09 sec)

  1. common/Makefile.common.mk

    lint-helm:
    	@${FINDFILES} -name 'Chart.yaml' -print0 | ${XARGS} -L 1 dirname | xargs -r helm lint --strict
    
    lint-copyright-banner:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/envoyfilter.go

    			Namespace: local.Namespace,
    			FullName:  local.Namespace + "/" + local.Name,
    			ApplyTo:   cp.ApplyTo,
    			Match:     cp.Match,
    			Operation: cp.Patch.Operation,
    		}
    		var err error
    		// Use non-strict building to avoid issues where EnvoyFilter is valid but meant
    		// for a different version of the API than we are built with
    		cpw.Value, err = xds.BuildXDSObjectFromStruct(cp.ApplyTo, cp.Patch.Value, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    			})
    			t.NewSubTest("strict").Run(func(t framework.TestContext) {
    				t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    					"Destination": dst.Config().Service,
    					"Source":      src.Config().Service,
    					"Namespace":   apps.Namespace.Name(),
    				}, `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: global-strict
    spec:
      mtls:
        mode: STRICT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

            ArtifactDescriptorPolicy policy = session.getArtifactDescriptorPolicy();
            if (policy == null) {
                return ArtifactDescriptorPolicy.STRICT;
            }
            return policy.getPolicy(session, new ArtifactDescriptorPolicyRequest(a, request.getRequestContext()));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. cmd/signature-v4-utils.go

    		return true
    	case emptySHA256:
    		// some broken clients set empty-sha256
    		// with > 0 content-length in the body,
    		// we should skip such clients and allow
    		// blindly such insecure clients only if
    		// S3 strict compatibility is disabled.
    
    		// We return true only in situations when
    		// deployment has asked MinIO to allow for
    		// such broken clients and content-length > 0.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        private List<String> writeDependencyVerifications = emptyList();
        private List<String> lockedDependenciesToUpdate = emptyList();
        private DependencyVerificationMode verificationMode = DependencyVerificationMode.STRICT;
        private boolean refreshKeys;
        private boolean exportKeys;
        private WelcomeMessageConfiguration welcomeMessageConfiguration = new WelcomeMessageConfiguration(WelcomeMessageDisplayMode.ONCE);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    	}
    	return s1 == s2
    }
    
    // Ignores all reserved bucket names or invalid bucket names.
    func isReservedOrInvalidBucket(bucketEntry string, strict bool) bool {
    	if bucketEntry == "" {
    		return true
    	}
    
    	bucketEntry = strings.TrimSuffix(bucketEntry, SlashSeparator)
    	if strict {
    		if err := s3utils.CheckValidBucketNameStrict(bucketEntry); err != nil {
    			return true
    		}
    	} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                return this
            }
        }
    
        private
        var writingState: WritingState = Idle()
    
        // Start fingerprinting if not already started and not already committed
        // This should be strict but currently this method may be called multiple times when a
        // build invocation both runs tasks and queries models
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            return kotlinType.toKtType(analysisContext)
        }
    
        private fun getKtTypeAsTypeArgument(ktTypeReference: KtTypeReference): KotlinType? {
            val call = ktTypeReference.getParentOfType<KtCallElement>(strict = true) ?: return null
            val bindingContext = analysisContext.analyze(ktTypeReference, AnalysisMode.PARTIAL)
            val resolvedCall = call.getResolvedCall(bindingContext) ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. cmd/erasure-healing.go

    	disks = disks[:expectedDisks]
    
    	// How to resolve partial results.
    	resolver := metadataResolutionParams{
    		dirQuorum: 1,
    		objQuorum: 1,
    		bucket:    bucket,
    		strict:    false, // Allow less strict matching.
    	}
    
    	path := baseDirFromPrefix(prefix)
    	filterPrefix := strings.Trim(strings.TrimPrefix(prefix, path), slashSeparator)
    	if path == prefix {
    		filterPrefix = ""
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
Back to top