Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 162 for rebind (0.12 sec)

  1. tests/integration/pilot/cni/cniversionskew_test.go

    )
    
    const (
    	// TODO: replace this with official 1.11 release once available.
    	NMinusOne    = "1.11.0-beta.1"
    	CNIConfigDir = "tests/integration/pilot/testdata/upgrade"
    )
    
    // Currently only test CNI with one version behind.
    var versions = []string{NMinusOne}
    
    // TestCNIVersionSkew runs all traffic tests with older versions of CNI and lastest Istio.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/BehindFlagFeatureInterceptor.groovy

    import org.gradle.integtests.fixtures.executer.AbstractGradleExecuter
    import org.spockframework.runtime.extension.IMethodInvocation
    
    import java.lang.annotation.Annotation
    
    /**
     * A base interceptor for features hidden behind a flag, convenient for executing tests with the flag on or off.
     * If a test only makes sense if the feature is enabled, then it needs to be annotated with {@link RequiredFeatures}.
     */
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. docs/fa/docs/advanced/sub-applications.md

    و زیر برنامه ها نیز می تواند زیر برنامه های متصل شده خود را داشته باشد و همه چیز به درستی کار کند، زیرا FastAPI تمام این مسیرهای `root_path` را به طور خودکار مدیریت می کند.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/time/tick.go

    func NewTicker(d Duration) *Ticker {
    	if d <= 0 {
    		panic("non-positive interval for NewTicker")
    	}
    	// Give the channel a 1-element time buffer.
    	// If the client falls behind while reading, we drop ticks
    	// on the floor until the client catches up.
    	c := make(chan Time, 1)
    	t := (*Ticker)(unsafe.Pointer(newTimer(when(d), int64(d), sendTime, c, syncTimer(c))))
    	t.C = c
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. cni/pkg/ipset/nldeps_linux.go

    //
    // ipset v7.10: Argument `comment' is supported in the kernel module of the set type hash:ip
    // starting from the revision 3 and you have installed revision 1 only.
    // Your kernel is behind your ipset utility.
    //
    // This happens with kernels as recent as Fedora38, e.g: 6.4.11-200.fc38.aarch64
    func (m *realDeps) clearEntriesWithComment(name, comment string) error {
    	res, err := netlink.IpsetList(name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/docker.md

    │   └── main.py
    ├── Dockerfile
    └── requirements.txt
    ```
    
    #### Behind a TLS Termination Proxy
    
    If you are running your container behind a TLS Termination Proxy (load balancer) like Nginx or Traefik, add the option `--proxy-headers`, this will tell Uvicorn (through the FastAPI CLI) to trust the headers sent by that proxy telling it that the application is running behind HTTPS, etc.
    
    ```Dockerfile
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    						}
    						// build the port bind map for none plain text protocol, thus can avoid protocol conflict if it's different bind
    						var newBind bool
    						if bindsPortMap, ok := nonPlainTextGatewayPortsBindMap[resolvedPort]; ok {
    							newBind = !bindsPortMap.InsertContains(serverPort.Bind)
    						} else {
    							nonPlainTextGatewayPortsBindMap[resolvedPort] = sets.New(serverPort.Bind)
    							newBind = true
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/first-steps.md

        Using a relative URL is important to make sure your application keeps working even in an advanced use case like [Behind a Proxy](../../advanced/behind-a-proxy.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/image/jpeg/scan.go

    				// Reset the progressive decoder state, as per section G.1.2.2.
    				d.eobRun = 0
    			}
    		} // for mx
    	} // for my
    
    	return nil
    }
    
    // refine decodes a successive approximation refinement block, as specified in
    // section G.1.2.
    func (d *decoder) refine(b *block, h *huffman, zigStart, zigEnd, delta int32) error {
    	// Refining a DC component is trivial.
    	if zigStart == 0 {
    		if zigEnd != 0 {
    			panic("unreachable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	// Becase that the grpc client still use the old tls configuration to reconnect to istiod.
    	// So here we need to rebuild the caClient in order to use the new root cert.
    	defer func() {
    		if err != nil {
    			citadelClientLog.Errorf("failed to sign CSR: %v", err)
    			if err := c.reconnect(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top