Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 830 for reuse (0.05 sec)

  1. tests/testdata/config/egressgateway.yaml

        #  httpsRedirect: true # sends 302 redirect for http requests
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - egressgateway.bookinfo.com
        tls:
          # We can reuse the standard Istio certs mounted in the gateway
          mode: SIMPLE #enables HTTPS on this port
          serverCertificate: /etc/certs/cert-chain.pem
          privateKey: /etc/certs/key.pem
          caCertificates: /etc/certs/root-cert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 933 bytes
    - Viewed (0)
  2. tests/testdata/config/ingressgateway.yaml

        #tls:
        #  httpsRedirect: true # sends 302 redirect for http requests
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - uk.bookinfo.com
        tls:
          # We can reuse the standard Istio certs mounted in the gateway
          mode: SIMPLE #enables HTTPS on this port
          serverCertificate: /etc/certs/cert-chain.pem
          privateKey: /etc/certs/key.pem
          caCertificates: /etc/certs/root-cert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 914 bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/Platform.java

    /** @author Jesse Wilson */
    final class Platform {
    
      private static final char[] CHAR_BUFFER = new char[1024];
    
      static char[] charBufferFromThreadLocal() {
        // ThreadLocal is not available to GWT, so we always reuse the same
        // instance.  It is always safe to return the same instance because
        // javascript is single-threaded, and only used by blocks that doesn't
        // involve async callbacks.
        return CHAR_BUFFER;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

    package org.gradle.internal.resource;
    
    import org.gradle.api.Describable;
    
    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/MutableUnitOfWork.java

    package org.gradle.internal.execution;
    
    import org.gradle.internal.execution.workspace.MutableWorkspaceProvider;
    
    /**
     * A unit of work that can be executed multiple times in the same workspace.
     * Such work can reuse outputs from a previous execution.
     */
    public interface MutableUnitOfWork extends UnitOfWork {
        /**
         * Returns the {@link MutableWorkspaceProvider} to allocate a workspace to execution this work in.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:27 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/net/sockopt_solaris.go

    		// Allow broadcast.
    		return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_BROADCAST, 1))
    	}
    	return nil
    }
    
    func setDefaultListenerSockopts(s int) error {
    	// Allow reuse of recently-used addresses.
    	return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1))
    }
    
    func setDefaultMulticastSockopts(s int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 00:33:27 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_1x.md

     * Fix: Persist proper `Content-Encoding` header to cache for GZip responses.
     * Fix: Eliminate rare race condition in SPDY streams that would prevent connection reuse.
     * Fix: Change HTTP date formats to UTC to conform to RFC2616 section 3.3.
     * Fix: Support SPDY header blocks with trailing bytes.
     * Fix: Allow `;` as separator for `Cache-Control` header.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  8. src/net/sockopt_linux.go

    		// Allow broadcast.
    		return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_BROADCAST, 1))
    	}
    	return nil
    }
    
    func setDefaultListenerSockopts(s int) error {
    	// Allow reuse of recently-used addresses.
    	return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1))
    }
    
    func setDefaultMulticastSockopts(s int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 00:33:27 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/env_test.go

    		defer syscall.Setenv("GOROOT", orig)
    	} else {
    		defer syscall.Unsetenv("GOROOT")
    	}
    	envs := runtime.Envs()
    	oldenvs := append([]string{}, envs...)
    	defer runtime.SetEnvs(oldenvs)
    
    	// attempt to reuse existing envs backing array.
    	want := runtime.GOROOT()
    	runtime.SetEnvs(append(envs[:0], "GOROOT="+want))
    
    	if got := runtime.GOROOT(); got != want {
    		t.Errorf(`initial runtime.GOROOT()=%q, want %q`, got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 19 11:28:19 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/ReusePlan.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.connection
    
    /** Reuse a connection from the pool. */
    internal class ReusePlan(
      val connection: RealConnection,
    ) : RoutePlanner.Plan {
      override val isReady = true
    
      override fun connectTcp() = error("already connected")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top