Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for _encapsulate (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/kubelet/app/options/options.go

    	// --authorization-mode
    	kc.Authorization.Mode = kubeletconfig.KubeletAuthorizationModeAlwaysAllow
    	// --read-only-port
    	kc.ReadOnlyPort = ports.KubeletReadOnlyPort
    }
    
    // KubeletServer encapsulates all of the parameters necessary for starting up
    // a kubelet. These can either be set via command line or directly.
    type KubeletServer struct {
    	KubeletFlags
    	kubeletconfig.KubeletConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top