Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for elts (0.5 sec)

  1. src/net/conf.go

    	_, localDomainDefined := syscall.Getenv("LOCALDOMAIN")
    	if localDomainDefined || os.Getenv("RES_OPTIONS") != "" || os.Getenv("HOSTALIASES") != "" {
    		confVal.preferCgo = true
    		return
    	}
    
    	// OpenBSD apparently lets you override the location of resolv.conf
    	// with ASR_CONFIG. If we notice that, defer to libc.
    	if runtime.GOOS == "openbsd" && os.Getenv("ASR_CONFIG") != "" {
    		confVal.preferCgo = true
    		return
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/rangefunc/rewrite.go

    	f(func() {
    		defer print("A")
    	})
    
    because the deferred code will run at the end of the iteration, not
    the end of the containing function. To fix that, the runtime provides
    a special hook that lets us obtain a defer "token" representing the
    outer function and then use it in a later defer to attach the deferred
    code to that outer function.
    
    Normally,
    
    	defer print("A")
    
    compiles to
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    The extra functions here are stubs to satisfy the references in the C
    code generated for gcc. The build process links this stub, along with
    _cgo_export.c and *.cgo2.c, into a dynamic executable and then lets
    cgo examine the executable. Cgo records the list of shared library
    references and resolved names and writes them into a new file
    _cgo_import.go, which looks like:
    
    	//go:cgo_dynamic_linker "/lib64/ld-linux-x86-64.so.2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top