Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 278 for reuse (0.04 sec)

  1. tests/integration/security/util/framework.go

    	ExternalSvc      = "external"
    )
    
    type EchoDeployments struct {
    	// TODO: Consolidate the echo config and reduce/reuse echo instances (https://github.com/istio/istio/issues/28599)
    	// Namespace1 is used as the default namespace for reachability tests and other tests which can reuse the same config for echo instances
    	Namespace1 namespace.Instance
    	// Namespace2 is used by most authorization test cases within authorization_test.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/net/net_fake_test.go

    		t.Logf("Listen returned expected error: %v", err)
    	} else {
    		t.Errorf("unexpected error from Listen: %v\nwant: %v", err, syscall.EADDRINUSE)
    	}
    
    	// When we close an arbitrary connection, we should be able to reuse its port
    	// even if the server hasn't yet seen the ECONNRESET for the connection.
    	dialed[0].Close()
    	dialed = dialed[1:]
    	t.Logf("closed one connection")
    	c, err = Dial(ln.Addr().Network(), ln.Addr().String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/BuildActionCrossVersionSpec.groovy

    import org.gradle.tooling.ProjectConnection
    
    import java.nio.file.Files
    
    class BuildActionCrossVersionSpec extends ToolingApiSpecification {
        def "can change the implementation of an action"() {
            // Make sure we reuse the same daemon
            toolingApi.requireIsolatedDaemons()
    
            disableJarCachingWhenUsingOldGradleVersion()
    
            def workDir = temporaryFolder.file("work")
            def implJar = workDir.file("action-impl.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/mtls_checker.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/authn"
    	"istio.io/istio/pkg/config"
    )
    
    // TODO this logic is probably done elsewhere in XDS, possible code-reuse + perf improvements
    type mtlsChecker struct {
    	push            *model.PushContext
    	svcPort         int
    	destinationRule *networkingapi.ClientTLSSettings_TLSmode
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

        )
    
        fun noNewExchanges()
    
        fun cancel()
      }
    
      companion object {
        /**
         * The timeout to use while discarding a stream of input data. Since this is used for connection
         * reuse, this timeout should be significantly less than the time it takes to establish a new
         * connection.
         */
        const val DISCARD_STREAM_TIMEOUT_MILLIS = 100
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

     *
     * Use of this class allows class loader creation to be lazy, and potentially optimised. It also provides a central location for class loader reuse.
     */
    public interface ClassLoaderScope {
        ClassLoaderScopeId getId();
    
        @Nullable
        ClassLoaderScopeOrigin getOrigin();
    
        /**
         * The classloader for use at this node.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

         *
         * The implementation blocks when multiple threads producing the same value concurrently, so that only a single thread produces the value and the other threads reuse the result.
         *
         * Production of the value always happens synchronously by the calling thread. However, the implementation may update the backing store with new value synchronously or asynchronously.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistry.java

    public class DefaultGradleUserHomeScopeServiceRegistry implements GradleUserHomeScopeServiceRegistry, Closeable {
        public static final String REUSE_USER_HOME_SERVICES = "org.gradle.internal.reuse.user.home.services";
        private final ServiceRegistry sharedServices;
        private final ServiceRegistrationProvider provider;
        private final Lock lock = new ReentrantLock();
        private final Map<File, Services> servicesForHomeDir = new HashMap<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/custom-docs-ui-assets.md

    ```Python hl_lines="8"
    {!../../../docs_src/custom_docs_ui/tutorial001.py!}
    ```
    
    ### Include the custom docs
    
    Now you can create the *path operations* for the custom docs.
    
    You can reuse FastAPI's internal functions to create the HTML pages for the docs, and pass them the needed arguments:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/sync/pool.go

    //
    // Pool's purpose is to cache allocated but unused items for later reuse,
    // relieving pressure on the garbage collector. That is, it makes it easy to
    // build efficient, thread-safe free lists. However, it is not suitable for all
    // free lists.
    //
    // An appropriate use of a Pool is to manage a group of temporary items
    // silently shared among and potentially reused by concurrent independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top