Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 110 for _encapsulate (0.28 sec)

  1. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *
     * @author Darick Tong
     * @since 13.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public class CycleDetectingLockFactory {
    
      /**
       * Encapsulates the action to be taken when a potential deadlock is encountered. Clients can use
       * one of the predefined {@link Policies} or specify a custom implementation. Implementations must
       * be thread-safe.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    			t.Fatal(err)
    		}
    		metrics.ResetForTest() // Clear metrics each loop
    	}
    }
    
    // streamContext encapsulates the structures necessary to communicate through
    // a SPDY connection, including the Reader/Writer streams.
    type streamContext struct {
    	conn         io.Closer
    	stdinStream  io.ReadCloser
    	stdoutStream io.WriteCloser
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/alloc.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    	"k8s.io/kubernetes/pkg/registry/core/service/portallocator"
    	netutils "k8s.io/utils/net"
    )
    
    // Allocators encapsulates the various allocators (IPs, ports) used in
    // Services.
    type Allocators struct {
    	serviceIPAllocatorsByFamily map[api.IPFamily]ipallocator.Interface
    	defaultServiceIPFamily      api.IPFamily // --service-cluster-ip-range[0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    // build adds the provided TCP and HTTP filters to the provided Listener and serializes them.
    // TODO: given how tightly tied listener.FilterChains, opts.filterChainOpts, and mutable.FilterChains
    // are to each other we should encapsulate them some way to ensure they remain consistent (mainly that
    // in each an index refers to the same chain).
    func (ml *MutableGatewayListener) build(builder *ListenerBuilder, opts gatewayListenerOpts) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    - Instead of `List<T>`, use `ListProperty<T>`.
    - Instead of `Set<T>`, use `SetProperty<T>`.
    
    == Annotating inputs and outputs
    
    A good practice is to create a task class for your custom task.
    The class encapsulates the task action logic, but should also declare any inputs and outputs the task expects.
    To do this, we use annotations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  6. cmd/erasure-sets.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/console"
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    // setsDsyncLockers is encapsulated type for Close()
    type setsDsyncLockers [][]dsync.NetLocker
    
    // erasureSets implements ObjectLayer combining a static list of erasure coded
    // object sets. NOTE: There is no dynamic scaling allowed or intended in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar_test.go

    func mustParseURL(s string) *url.URL {
    	u, err := url.Parse(s)
    	if err != nil || u.Scheme == "" || u.Host == "" {
    		panic(fmt.Sprintf("Unable to parse URL %s.", s))
    	}
    	return u
    }
    
    // jarTest encapsulates the following actions on a jar:
    //  1. Perform SetCookies with fromURL and the cookies from setCookies.
    //     (Done at time tNow + 0 ms.)
    //  2. Check that the entries in the jar matches content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		}
    	}
    	if activeQueues == 0 {
    		return 0
    	}
    	return math.Min(float64(seatsRequested), float64(qs.dCfg.ConcurrencyLimit)) / float64(activeQueues)
    }
    
    // shuffleShardAndRejectOrEnqueueLocked encapsulates the logic required
    // to validate and enqueue a request for the queueSet/QueueSet:
    // 1) Start with shuffle sharding, to pick a queue.
    // 2) Reject current request if there is not enough concurrency shares and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InetAddresses.java

        return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6));
      }
    
      /**
       * A simple immutable data class to encapsulate the information to be found in a Teredo address.
       *
       * <p>All of the fields in this class are encoded in various portions of the IPv6 address as part
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

        return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6));
      }
    
      /**
       * A simple immutable data class to encapsulate the information to be found in a Teredo address.
       *
       * <p>All of the fields in this class are encoded in various portions of the IPv6 address as part
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top