Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for elts (0.04 sec)

  1. src/internal/reflectlite/type.go

    	// (alphabetical, with no duplicate method names), the scan
    	// through V's methods must hit a match for each of T's
    	// methods along the way, or else V does not implement T.
    	// This lets us run the scan in overall linear time instead of
    	// the quadratic time  a naive search would require.
    	// See also ../runtime/iface.go.
    	if V.Kind() == Interface {
    		v := (*interfaceType)(unsafe.Pointer(V))
    		i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/tracers/opentelemetry/samplers/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/alts/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/http_11_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/internal_upstream/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          return FluentIterable.from(inputs)
              .<FluentFuture<?>>transform(future -> future.future)
              .toList();
        }
      }
    
      /**
       * A generic {@link Combiner} that lets you use a lambda or method reference to combine two {@link
       * ClosingFuture}s. Use {@link #whenAllSucceed(ClosingFuture, ClosingFuture)} to start this
       * combination.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. README.md

    - For installations using Systemd MinIO service, upgrade via RPM/DEB packages **parallelly** on all servers or replace the binary lets say `/opt/bin/minio` on all nodes, apply executable permissions `chmod +x /opt/bin/minio` and process to perform `mc admin service restart alias/`.
    
    ### Upgrade Checklist
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/preemption/preemption.go

    	// Lower priority pods nominated to run on this node, may no longer fit on
    	// this node. So, we should remove their nomination. Removing their
    	// nomination updates these pods and moves them to the active queue. It
    	// lets scheduler find another place for them.
    	nominatedPods := getLowerPriorityNominatedPods(logger, fh, pod, c.Name())
    	if err := util.ClearNominatedNodeName(ctx, cs, nominatedPods...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	dirtyWork  map[string][]*admissionWaiter
    	inProgress sets.String
    
    	// controls the run method so that we can cleanly conform to the Evaluator interface
    	workers int
    	stopCh  <-chan struct{}
    	init    sync.Once
    
    	// lets us know what resources are limited by default
    	config *resourcequotaapi.Configuration
    }
    
    type admissionWaiter struct {
    	attributes admission.Attributes
    	finished   chan struct{}
    	result     error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. src/go/build/build.go

    // Otherwise it is not possible to vendor just a/b/c and still import the
    // non-vendored a/b. See golang.org/issue/13832.
    func hasGoFiles(ctxt *Context, dir string) bool {
    	ents, _ := ctxt.readDir(dir)
    	for _, ent := range ents {
    		if !ent.IsDir() && strings.HasSuffix(ent.Name(), ".go") {
    			return true
    		}
    	}
    	return false
    }
    
    func findImportComment(data []byte) (s string, line int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm.go

    // table is the previous table doubled six times. Six is the width of the
    // sliding window used in p256ScalarMult, and having each table already
    // pre-doubled lets us avoid the doublings between windows entirely. This table
    // MUST NOT be modified, as it aliases into p256PrecomputedEmbed below.
    var p256Precomputed *[43]p256AffineTable
    
    //go:embed p256_asm_table.bin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. cluster/log-dump/log-dump.sh

        local -r scp_files="{$(printf "%s," "${files[@]}")}"
    
        if [[ "${gcloud_supported_providers}" =~ ${KUBERNETES_PROVIDER} ]]; then
          # get-serial-port-output lets you ask for ports 1-4, but currently (11/21/2016) only port 1 contains useful information
          gcloud compute instances get-serial-port-output --project "${PROJECT}" --zone "${ZONE}" --port 1 "${node}" > "${dir}/serial-1.log" || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier_test.go

    func checkIPSet(t *testing.T, fp *Proxier, ipSet netlinktest.ExpectedIPSet) {
    	for set, entries := range ipSet {
    		ents, err := fp.ipset.ListEntries(set)
    		if err != nil || len(ents) != len(entries) {
    			t.Errorf("Check ipset entries failed for ipset: %q, expect %d, got %d", set, len(entries), len(ents))
    			continue
    		}
    		expectedEntries := []string{}
    		for _, entry := range entries {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top