Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 210 for STRICT (0.12 sec)

  1. hack/golangci-hints.yaml

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tests/integration/security/ecc_signature_algorithm/mtls_strict_test.go

          mode: ISTIO_MUTUAL
    `
    
    	PeerAuthenticationConfig = `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: {{.AppNamespace}}
    spec:
      mtls:
        mode: STRICT
    `
    )
    
    func TestStrictMTLS(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			ns := apps.EchoNamespace.Namespace.Name()
    			args := map[string]string{"AppNamespace": ns}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    `
    
    	PeerAuthenticationConfig = `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: "istio-system"
    spec:
      mtls:
        mode: STRICT
    `
    )
    
    func createObject(ctx framework.TestContext, serviceNamespace string, yamlManifest string) {
    	args := map[string]string{"AppNamespace": serviceNamespace}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

        }
    
        @Override
        public ResolutionStrategy failOnVersionConflict() {
            mutationValidator.validateMutation(STRATEGY);
            this.conflictResolution = ConflictResolution.strict;
            return this;
        }
    
        @Override
        public ResolutionStrategy failOnDynamicVersions() {
            mutationValidator.validateMutation(STRATEGY);
            this.failOnDynamicVersions = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    // See go.dev/issue/67401.
    //
    //go:linkname funcline1
    func funcline1(f funcInfo, targetpc uintptr, strict bool) (file string, line int32) {
    	datap := f.datap
    	if !f.valid() {
    		return "?", 0
    	}
    	fileno, _ := pcvalue(f, f.pcfile, targetpc, strict)
    	line, _ = pcvalue(f, f.pcln, targetpc, strict)
    	if fileno == -1 || line == -1 || int(fileno) >= len(datap.filetab) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

                            .read(XmlReaderRequest.builder()
                                    .inputStream(is)
                                    .location(settingsSource.getLocation())
                                    .strict(true)
                                    .build());
                } catch (XmlReaderException e) {
                    try (InputStream is = settingsSource.openStream()) {
                        settings = request.getSession()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSuperPomProvider.java

                return modelProcessor.read(XmlReaderRequest.builder()
                        .modelId(modelId)
                        .location(url.toExternalForm())
                        .inputStream(is)
                        .strict(false)
                        .build());
            } catch (IOException e) {
                throw new IllegalStateException(
                        "The super POM " + resource + " is damaged"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/stmt0.go

    		_ = v
    	}
    
    	var t I
    	switch t.(type) {
    	case T:
    	case T1 /* ERROR "missing method m" */ :
    	case T2 /* ERROR "wrong type for method m" */ :
    	case I2 /* STRICT "wrong type for method m" */ : // only an error in strict mode (issue 8561)
    	}
    
    
    	{
    		x := 1
    		v := 2
    		switch v /* ERROR "v (variable of type int) is not an interface" */ .(type) {
    		case int:
    			println(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pilot/pkg/model/authentication.go

    	// MTLSDisable if authentication policy disable mTLS.
    	MTLSDisable
    
    	// MTLSPermissive if authentication policy enable mTLS in permissive mode.
    	MTLSPermissive
    
    	// MTLSStrict if authentication policy enable mTLS in strict mode.
    	MTLSStrict
    )
    
    // In Ambient, we convert k8s PeerAuthentication resources to the same type as AuthorizationPolicies
    // To prevent conflicts in xDS, we add this prefix to the converted PeerAuthentication resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. tests/integration/security/reachability_test.go

    				expectCrossNetwork condition
    				expectSuccess      condition
    				// minIstioVersion allows conditionally skipping based on required version
    				minIstioVersion string
    			}{
    				{
    					name: "global mtls strict",
    					configs: config.Sources{
    						config.File("testdata/reachability/global-peer-authn.yaml.tmpl"),
    						config.File("testdata/reachability/global-dr.yaml.tmpl"),
    					}.WithParams(param.Params{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top