Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for STRICT (0.09 sec)

  1. tests/integration/pilot/common/routing.go

    		{"auto-tcp-server", "DISABLE", "PERMISSIVE", check.Error()},
    		{"auto-tcp-server", "DISABLE", "STRICT", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "DISABLE", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "PERMISSIVE", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "STRICT", check.Error()},
    
    		// These is broken because we will still enable inbound sniffing for the port. Since there is no tls,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			discovery:       cluster.Cluster_STATIC,
    			endpoints:       nil,
    			direction:       model.TrafficDirectionOutbound,
    			external:        false,
    			expectedCluster: nil,
    		},
    		{
    			name:            "strict DNS cluster with no endpoints",
    			clusterName:     "foo",
    			discovery:       cluster.Cluster_STRICT_DNS,
    			endpoints:       nil,
    			direction:       model.TrafficDirectionOutbound,
    			external:        false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	"github.com/zeebo/xxh3"
    )
    
    const (
    	maxEConfigJSONSize        = 262272
    	kubernetesVersionEndpoint = "https://kubernetes.default.svc/version"
    	anonymizeParam            = "anonymize"
    	anonymizeStrict           = "strict"
    )
    
    // Only valid query params for mgmt admin APIs.
    const (
    	mgmtBucket      = "bucket"
    	mgmtPrefix      = "prefix"
    	mgmtClientToken = "clientToken"
    	mgmtForceStart  = "forceStart"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

     * 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.
     */
    
    package elf
    
    import "strconv"
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/net/http/server.go

    //
    // # Precedence
    //
    // If two or more patterns match a request, then the most specific pattern takes precedence.
    // A pattern P1 is more specific than P2 if P1 matches a strict subset of P2’s requests;
    // that is, if P2 matches all the requests of P1 and more.
    // If neither is more specific, then the patterns conflict.
    // There is one exception to this rule, for backwards compatibility:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top