Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 844 for STRICT (0.55 sec)

  1. tests/integration/pilot/grpc_probe_test.go

    			}
    
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "grpc-probe", Inject: true})
    			// apply strict mtls
    			t.ConfigKube(t.Clusters().Configs()...).YAML(ns.Name(), `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: grpc-probe-mtls
    spec:
      mtls:
        mode: STRICT`).ApplyOrFail(t)
    
    			for _, testCase := range []struct {
    				name     string
    				rewrite  bool
    				ready    bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. test/winbatch.go

    package main
    
    import (
    	"bytes"
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    )
    
    func main() {
    	// Ensure that the GOROOT/src/all.bat file exists and has strict CRLF line endings.
    	enforceBatchStrictCRLF(filepath.Join(runtime.GOROOT(), "src", "all.bat"))
    
    	// Walk the entire Go repository source tree (without GOROOT/pkg),
    	// skipping directories that start with "." and named "testdata",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 02 16:33:57 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    			assertOnError: func(t *testing.T, err error) {
    				if err != nil {
    					t.Errorf("expected nil error, got: %v", err)
    				}
    			},
    		},
    		{
    			name:        "strict mode strict error",
    			options:     []Option{Strict(true)},
    			data:        []byte{0xa1, 0x61, 'z', 0x01}, // {'z': 1}
    			gvk:         &schema.GroupVersionKind{},
    			metaFactory: stubMetaFactory{gvk: &schema.GroupVersionKind{}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    // - Ignore
    // - Warn (default)
    // - Strict
    func fieldValidation(directive string) string {
    	if directive == "" {
    		return metav1.FieldValidationWarn
    	}
    	return directive
    }
    
    // parseYAMLWarnings takes the strict decoding errors from the yaml decoder's output
    // and parses each individual warnings, or leaves the warning as is if
    // it does not look like a yaml strict decoding error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. tests/integration/ambient/testdata/beta-mtls-on.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 384 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                    "The org.gradle.kotlin.dsl.precompiled.accessors.strict system property has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
                        "Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_7.html#strict-kotlin-dsl-precompiled-scripts-accessors-by-default"
                )
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    		expectedErr           error
    	}{
    		{
    			name:           "strict-decoding",
    			body:           multiVersionJSON,
    			strictDecoding: true,
    			expectedObj:    expectedObjUnknownNotPreserved,
    			expectedErr:    errors.New(`strict decoding error: duplicate field "num", unknown field "unknown"`),
    		},
    		{
    			name:           "non-strict-decoding",
    			body:           multiVersionJSON,
    			strictDecoding: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-unset-port-mtls-permissive-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: strict-mtls
    spec:
      selector:
        matchLabels:
          app: a
      mtls:
        mode: UNSET
      portLevelMtls:
        9090:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 215 bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// Static STRICT policy should be sent
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{"ns1/selector", fmt.Sprintf("istio-system/%s", staticStrictPolicyName)})
    
    	// Now add a STRICT workload PeerAuthentication
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::lock-mode[]
    dependencyLocking {
        lockMode = LockMode.STRICT
    }
    // end::lock-mode[]
    
    configurations {
        compileClasspath {
            resolutionStrategy.activateDependencyLocking()
        }
    }
    
    dependencies {
        implementation 'org.springframework:spring-beans:[5.0,6.0)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
Back to top