Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for PERMISSIVE (0.15 sec)

  1. src/net/mail/message.go

    }
    
    // consumeAtom parses an RFC 5322 atom at the start of p.
    // If dot is true, consumeAtom parses an RFC 5322 dot-atom instead.
    // If permissive is true, consumeAtom will not fail on:
    // - leading/trailing/double dots in the atom (see golang.org/issue/4938)
    func (p *addrParser) consumeAtom(dot bool, permissive bool) (atom string, err error) {
    	i := 0
    
    Loop:
    	for {
    		r, size := utf8.DecodeRuneInString(p.s[i:])
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_test.go

    		http   map[int]bool
    		tls    map[int]bool
    	}{
    		{
    			name:   "permissive",
    			config: "",
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    			tls: map[int]bool{
    				// Permissive mode: inspector is set everywhere
    				80:   false,
    				82:   false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pkg/apis/resource/structured/namedresources/validation/validation.go

    )
    
    type Options struct {
    	// StoredExpressions must be true if and only if validating CEL
    	// expressions that were already stored persistently. This makes
    	// validation more permissive by enabling CEL definitions that are not
    	// valid yet for new expressions.
    	StoredExpressions bool
    }
    
    func ValidateResources(resources *resource.NamedResourcesResources, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/SimpleIdnaMappingTable.kt

     *
     * This implements non-transitional processing by preserving deviation characters.
     *
     * This implementation's STD3 rules are configured to `UseSTD3ASCIIRules=false`. This is
     * permissive and permits the `_` character.
     *
     * [mapping table]: https://www.unicode.org/reports/tr46/#IDNA_Mapping_Table
     * [mapping step]: https://www.unicode.org/reports/tr46/#ProcessingStepMap
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    			t.NewSubTest("permissive").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-permissive
    spec:
      mtls:
        mode: PERMISSIVE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			},
    		}
    	})
    	// There should be an event since effective policy moves to PERMISSIVE
    	s.assertEvent(t, s.podXdsName("pod1"), s.podXdsName("pod2"), xdsConvertedPeerAuthSelector)
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		nil)
    
    	// Change namespace policy to be PERMISSIVE
    	s.addPolicy(t, "namespace", testNS, nil, gvk.PeerAuthentication, func(c controllers.Object) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultimapPutIterableTester.java

        /*
         * In principle, a Multimap implementation could add e3 first before failing on the null. But
         * that seems unlikely enough to be worth complicating the test over, especially if there's any
         * chance that a permissive test could mask a bug.
         */
        expectUnchanged();
        // Be extra thorough in case internal state was corrupted by the expected null.
        assertEquals(Lists.newArrayList(), Lists.newArrayList(multimap().get(k3())));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 7.6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapPutIterableTester.java

        /*
         * In principle, a Multimap implementation could add e3 first before failing on the null. But
         * that seems unlikely enough to be worth complicating the test over, especially if there's any
         * chance that a permissive test could mask a bug.
         */
        expectUnchanged();
        // Be extra thorough in case internal state was corrupted by the expected null.
        assertEquals(Lists.newArrayList(), Lists.newArrayList(multimap().get(k3())));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 7.6K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier.go

    // Workload-level configs should not be in root namespace (this should be guaranteed by the caller,
    // though they will be safely ignored in this function). If the input config list is empty, returns
    // a default policy set to a PERMISSIVE.
    // If there is at least one applicable config, returns should not be nil, and is a combined policy
    // based on following rules:
    // - It should have the setting from the most narrow scope (i.e workload-level is preferred over
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. LICENSE

    must place, in the relevant source files, a statement of the
    additional terms that apply to those files, or a notice indicating
    where to find the applicable terms.
    
      Additional terms, permissive or non-permissive, may be stated in the
    form of a separately written license, or stated as exceptions;
    the above requirements apply either way.
    
      8. Termination.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
Back to top