Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for forPort (0.09 sec)

  1. pilot/pkg/networking/plugin/authn/authentication.go

    	trustDomains := TrustDomainsForValidation(push.Mesh)
    	return &Builder{
    		applier:      applier,
    		proxy:        proxy,
    		trustDomains: trustDomains,
    	}
    }
    
    func (b *Builder) ForPort(port uint32) authn.MTLSSettings {
    	if b == nil {
    		return authn.MTLSSettings{
    			Port: port,
    			Mode: model.MTLSDisable,
    		}
    	}
    	return b.applier.InboundMTLSSettings(port, b.proxy, b.trustDomains, authn.NoOverride)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

                    .withExposedPorts(port)//
                    .withCommand("server /data")//
                    .waitingFor(new HttpWaitStrategy()//
                            .forPath("/minio/health/ready")//
                            .forPort(port)//
                            .withStartupTimeout(Duration.ofSeconds(30)));
            logger.info("Starting {}", IMAGE_NAME);
            minioServer.start();
            logger.info("Started {}", IMAGE_NAME);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    		// to handle mTLS vs plaintext and HTTP vs TCP (depending on protocol and PeerAuthentication).
    		var opts []FilterChainMatchOptions
    		mtls := lb.authnBuilder.ForPort(cc.port.TargetPort)
    		// Chain has explicit user TLS config. This can only apply when the TLS mode is DISABLE to avoid conflicts.
    		if cc.tlsSettings != nil && mtls.Mode == model.MTLSDisable {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. operator/pkg/patch/patch_test.go

            - containerPort: 15014
            - containerPort: 9901
    `,
    		},
    		{
    			desc: "UpdateInteriorNode",
    			path: `spec.template.spec.containers.[name:galley].ports.[containerPort:15014]`,
    			value: `
          fooPort: 15015`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    spec:
      template:
        spec:
          containers:
          - foo: bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  5. src/math/big/prime_test.go

    			t.Errorf("%s(%v, base=2) = false, want true", name, i)
    		}
    		if len(want) > 0 && i == want[0] {
    			want = want[1:]
    		}
    	}
    	if len(want) > 0 {
    		t.Fatalf("forgot to test %v", want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    		KindUnreachable:     "Unreachable",
    		KindBody:            "Body",
    		KindForBody:         "ForBody",
    		KindForDone:         "ForDone",
    		KindForLoop:         "ForLoop",
    		KindForPost:         "ForPost",
    		KindIfDone:          "IfDone",
    		KindIfElse:          "IfElse",
    		KindIfThen:          "IfThen",
    		KindLabel:           "Label",
    		KindRangeBody:       "RangeBody",
    		KindRangeDone:       "RangeDone",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_delta.go

    	if err != nil {
    		// Envoy logs errors again, so no need to log beyond debug level
    		log.Debugf("failed to create delta upstream grpc client: %v", err)
    		// Increase metric when xds connection error, for example: forgot to restart ingressgateway or sidecar after changing root CA.
    		metrics.IstiodConnectionErrors.Increment()
    		return err
    	}
    	log.Infof("connected to delta upstream XDS server: %s", p.istiodAddress)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This error indicates that you have a syntax or grammar error in your TOML version catalog file.
    
    This can happen if you use wrong keys, for example:
    
    ```toml
    some-alias = { unknownKey = "foo" }
    ```
    
    or that you forgot about some elements:
    
    ```toml
    # missing the "group"
    some-alias = { name="my-lib", version="1.0" }
    ```
    
    [[unsupported_format_version]]
    == Unsupported TOML file format version
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/runtime/pinner.go

    // panic function is a variable, that can be overwritten by a test.
    var pinnerLeakPanic = func() {
    	panic(errorString("runtime.Pinner: found leaking pinned pointer; forgot to call Unpin()?"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    If you don't see the report link in the output in the IDE, make sure to select the top-level node in the structured output panel.
    The report will explain the errors in detail.
    Perhaps, you forgot to add an `@Incubating` annotation or `@since` in the javadoc.
    
    2. Accept the changes.\
    If you are sure that the changes are intentional, follow the steps described in the report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top