Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 218 for Unshare (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

       *
       * Once true this is always true. Guarded by this.
       */
      var noNewExchanges = false
    
      /**
       * If true, this connection may not be used for coalesced requests. These are requests that could
       * share the same connection without sharing the same hostname.
       */
      private var noCoalescedConnections = false
    
      /**
       * The number of times there was a problem establishing a stream that could be due to route
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/network.go

    	}
    	mgr := &NetworkManager{
    		env:             env,
    		NameCache:       nameCache,
    		xdsUpdater:      xdsUpdater,
    		NetworkGateways: &NetworkGateways{},
    		Unresolved:      &NetworkGateways{},
    	}
    
    	// share lock with root NetworkManager
    	mgr.NetworkGateways.mu = &mgr.mu
    	mgr.Unresolved.mu = &mgr.mu
    
    	env.AddNetworksHandler(mgr.reloadGateways)
    	// register to per registry, will be called when gateway service changed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                }
                if (path == null) {
                    path = System.getenv("path");
                }
                final List<String> pathList = new ArrayList<>();
                pathList.add("/usr/share/fess/bin");
                if (path != null) {
                    stream(path.split(File.pathSeparator)).of(stream -> stream.map(String::trim).forEach(s -> pathList.add(s)));
                }
                if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

                this.listenerProvider = listenerProvider;
                BuildEventSubscriptions eventSubscriptions = new BuildEventSubscriptions(Collections.singleton(OperationType.TASK));
                // TODO - share these listeners here and with the tooling api client, where possible
                listeners = ImmutableList.copyOf(factory.createListeners(eventSubscriptions, this));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

        private val owner: GradleInternal,
        private val internalTypesCodec: Codec<Any?>,
        private val ordinalGroups: OrdinalGroupFactory
    ) {
    
        suspend fun WriteContext.writeWork(work: ScheduledWork) {
            // Share bean instances across all nodes (except tasks, which have their own isolate)
            withGradleIsolate(owner, internalTypesCodec) {
                doWrite(work)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/syscall_windows.go

    //sys	GetCurrentThread() (pseudoHandle syscall.Handle, err error) = kernel32.GetCurrentThread
    
    // Constants from lmshare.h
    const (
    	STYPE_DISKTREE  = 0x00
    	STYPE_TEMPORARY = 0x40000000
    )
    
    type SHARE_INFO_2 struct {
    	Netname     *uint16
    	Type        uint32
    	Remark      *uint16
    	Permissions uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

     *
     * The task runner is also responsible for releasing held threads when the library is unloaded.
     * This is for the benefit of container environments that implement code unloading.
     *
     * Most applications should share a process-wide [TaskRunner] and use queues for per-client work.
     */
    class TaskRunner(
      val backend: Backend,
      internal val logger: Logger = TaskRunner.logger,
    ) {
      val lock: ReentrantLock = ReentrantLock()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/provider_test.go

    			imagefsDevice: "image/device",
    			dedicated:     true,
    			imageFsStats:  imageStatsExpected,
    		},
    		"shared device for image filesystem": {
    			rootfsDevice:     "share/device",
    			imagefsDevice:    "share/device",
    			dedicated:        false,
    			imageFsStats:     imageStatsExpected,
    			containerFsStats: imageStatsExpected,
    		},
    		"split filesystem for images": {
    			rootfsDevice:     "root/device",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    A build that is included in a composite build is referred to as an *included build*.
    Included builds do not share any configuration with the composite build or the other included builds.
    Each included build is configured and executed in isolation.
    
    [[defining_composite_builds]]
    == Defining a composite build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. pilot/pkg/security/authn/policy_applier.go

    	innerAndList := []*envoy_jwt.JwtRequirement{}
    
    	// This is an (or) list for all providers. This will be OR with the innerAndList above so
    	// it can pass the requirement in the case that providers share the same location.
    	outterOrList := []*envoy_jwt.JwtRequirement{}
    
    	for i, jwtRule := range jwtRules {
    		provider := &envoy_jwt.JwtProvider{
    			Issuer:               jwtRule.Issuer,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top