Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for elts (0.06 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    	if err != nil || volumePlugin == nil {
    		return volumetypes.GeneratedOperations{}, volumeToMount.GenerateErrorDetailed("VerifyControllerAttachedVolume.FindPluginBySpec failed", err)
    	}
    
    	// For attachable volume types, lets check if volume is attached by reading from node lister.
    	// This would avoid exponential back-off and creation of goroutine unnecessarily. We still
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    	// configuration object lets you customize what IP/DNS name and port the local API server advertises it's accessible
    	// on. By default, kubeadm tries to auto-detect the IP of the default interface and use that, but in case that process
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    	// configuration object lets you customize what IP/DNS name and port the local API server advertises it's accessible
    	// on. By default, kubeadm tries to auto-detect the IP of the default interface and use that, but in case that process
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

        Set<SomeEnum> units = Stream.<SomeEnum>empty().collect(Sets.toImmutableEnumSet());
        assertThat(units).isEmpty();
      }
    
      public void testToImmutableEnumSetReused() {
        // The method call lets us capture the accumulator as an A and invoke the callbacks manually
        genericTestToImmutableEnumSetReused(Sets.<SomeEnum>toImmutableEnumSet());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    // VolumeHost interface)
    
    // KubeletVolumeHost is a Kubelet specific interface that plugins can use to access the kubelet.
    type KubeletVolumeHost interface {
    	// SetKubeletError lets plugins set an error on the Kubelet runtime status
    	// that will cause the Kubelet to post NotReady status with the error message provided
    	SetKubeletError(err error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top