Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,272 for updateSV (0.12 sec)

  1. pkg/kubelet/config/file.go

    	config := newSourceFile(path, nodeName, period, updates)
    	klog.V(1).InfoS("Watching path", "path", path)
    	config.run()
    }
    
    func newSourceFile(path string, nodeName types.NodeName, period time.Duration, updates chan<- interface{}) *sourceFile {
    	send := func(objs []interface{}) {
    		var pods []*v1.Pod
    		for _, o := range objs {
    			pods = append(pods, o.(*v1.Pod))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 07:19:44 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    // May or may not send an update upstream.
    func (f *folderScanner) sendUpdate() {
    	// Send at most an update every minute.
    	if f.updates == nil || time.Since(f.lastUpdate) < time.Minute {
    		return
    	}
    	if flat := f.updateCache.sizeRecursive(f.newCache.Info.Name); flat != nil {
    		select {
    		case f.updates <- flat.clone():
    		default:
    		}
    		f.lastUpdate = time.Now()
    	}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    // updateNode creates a copy of originalNode and runs update logic on it.
    // It returns the updated node object and a bool indicating if anything has been changed.
    func (kl *Kubelet) updateNode(ctx context.Context, originalNode *v1.Node) (*v1.Node, bool) {
    	node := originalNode.DeepCopy()
    
    	podCIDRChanged := false
    	if len(node.Spec.PodCIDRs) != 0 {
    		// Pod CIDR could have been updated before, so we cannot rely on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VN     MOD26, d1, d1     \ // [in0₂₆[1], in1₂₆[1]]
    	VN     MOD24, d4, d4     \ // [in0₂₆[4], in1₂₆[4]]
    	VN     MOD26, d2, d2     // [in0₂₆[2], in1₂₆[2]]
    
    // func updateVX(state *macState, msg []byte)
    TEXT ·updateVX(SB), NOSPLIT, $0
    	MOVD state+0(FP), R1
    	LMG  msg+8(FP), R2, R3 // R2=msg_base, R3=msg_len
    
    	// load EX0, EX1 and EX2
    	MOVD $·constants<>(SB), R5
    	VLM  (R5), EX0, EX2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. hack/update-generated-stable-metrics.sh

    # by default.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/test/instrumentation/stability-utils.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 05 18:48:48 UTC 2021
    - 962 bytes
    - Viewed (0)
  6. releasenotes/notes/kiali-update-v1.34.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 11 21:01:51 UTC 2021
    - 138 bytes
    - Viewed (0)
  7. releasenotes/notes/kiali-update-v1.59.1.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 21:28:32 UTC 2022
    - 129 bytes
    - Viewed (0)
  8. releasenotes/notes/kiali-update-v1.67.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 24 18:25:04 UTC 2023
    - 131 bytes
    - Viewed (0)
  9. releasenotes/notes/update-jaeger-v1.22.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 22:18:04 UTC 2021
    - 138 bytes
    - Viewed (0)
  10. src/cmd/fix/doc.go

    The -r flag restricts the set of rewrites considered to those in the
    named list.  By default fix considers all known rewrites.  Fix's
    rewrites are idempotent, so that it is safe to apply fix to updated
    or partially updated code even without using the -r flag.
    
    Fix prints the full list of fixes it can apply in its help output;
    to see them, run go tool fix -help.
    
    Fix does not make backup copies of the files that it edits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top