Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 177 for STRICT (0.18 sec)

  1. 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)
  2. 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)
  3. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			"Namespace": ns,
    		}, `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "usergroup-peerauth"
      namespace: {{ .Namespace }}
    spec:
      mtls:
        mode: STRICT
    `).ApplyOrFail(t, apply.NoCleanup)
    	}
    }
    
    func allowExternalService(t framework.TestContext, ns string, externalNs string, revision string) {
    	t.ConfigIstio().Eval(ns, map[string]any{
    		"Namespace": externalNs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            problems.setSource(modelSource.getLocation());
            try {
                boolean strict = request.getValidationLevel() >= ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0;
    
                Map<String, Object> options = new HashMap<>(3);
                options.put(ModelProcessor.IS_STRICT, strict);
                options.put(ModelProcessor.SOURCE, modelSource);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. fastapi/openapi/docs.py

        html = """
        <!doctype html>
        <html lang="en-US">
        <head>
            <title>Swagger UI: OAuth2 Redirect</title>
        </head>
        <body>
        <script>
            'use strict';
            function run () {
                var oauth2 = window.opener.swaggerUIRedirectOauth2;
                var sentState = oauth2.state;
                var redirectUrl = oauth2.redirectUrl;
                var isValid, qp, arr;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/crypto/aes/block.go

    //	CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 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 OF THIS SOFTWARE,
    //	EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            }
        }
    
        /**
         * This methods computes the intersection of ancestors' strict versions coming in from different edges.
         * This is, because only if all paths to this node provides a strict version constraint for a module,
         * {@link #versionProvidedByAncestors(DependencyState)} is true for that module.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. cmd/metacache-set.go

    			// from a single drive, shuffling of the drives is subsequently.
    			disks = newDisks
    			askDisks = 1
    		} else {
    			// If we did not find suitable disks, perform strict quorum listing
    			// as no disk agrees on quorum anymore.
    			askDisks = getListQuorum("strict", er.setDriveCount)
    		}
    	}
    
    	var fallbackDisks []StorageAPI
    
    	// Special case: ask all disks if the drive count is 4
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

      for (const auto &perm_element : enumerate(perm)) {
        new_shape[perm_element.index()] = shape[perm_element.value()];
      }
      return new_shape;
    }
    
    // Determine if op commutes with transposes. Requires a strict
    // definition of Elementwise, all i/o shapes and types must be same-rank
    // broadcastable and fully static. Consider moving this into attribute later.
    bool IsElementwise(Operation *op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top