Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 338 for reuse (0.29 sec)

  1. pkg/apis/node/validation/validation.go

    	return allErrs
    }
    
    func validateOverhead(overhead *node.Overhead, fldPath *field.Path) field.ErrorList {
    	// reuse the ResourceRequirements validation logic
    	return corevalidation.ValidateResourceRequirements(&core.ResourceRequirements{Limits: overhead.PodFixed}, nil, fldPath,
    		corevalidation.PodValidationOptions{})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    		/kubelet        Generates a kubeconfig file for the kubelet to use.
    		...
    	...
    
    Phases are designed to be reusable across different kubeadm workflows thus allowing
    e.g. reuse of phase certs in both kubeadm init and kubeadm join --control-plane workflows.
    
    Each workflow can be defined and managed using a Runner, that will run all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top