Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 175 for Cur (0.02 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		// children to make them each roots of their own trees.
    		if len(cur.In) == 0 {
    			for _, outEdge := range cur.Out {
    				delete(outEdge.Dest.In, cur)
    			}
    			continue
    		}
    
    		// Get the parent. This works since at this point cur.In must contain only
    		// one element.
    		if len(cur.In) != 1 {
    			panic("Get parent assertion failed. cur.In expected to be of length 1.")
    		}
    		var parent *Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/completion.go

    		done
    	fi
    }
    
    __kubeadm_get_comp_words_by_ref() {
    	cur="${COMP_WORDS[COMP_CWORD]}"
    	prev="${COMP_WORDS[${COMP_CWORD}-1]}"
    	words=("${COMP_WORDS[@]}")
    	cword=("${COMP_CWORD[@]}")
    }
    
    __kubeadm_filedir() {
    	local RET OLD_IFS w qw
    
    	__kubectl_debug "_filedir $@ cur=$cur"
    	if [[ "$1" = \~* ]]; then
    		# somehow does not work. Maybe, zsh does not call this at all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod.go

    		}
    	}
    	return -1, nil
    }
    
    func (pc *PodCache) labelFilter(old, cur *v1.Pod) bool {
    	// If labels/annotations updated, trigger proxy push
    	labelsChanged := !maps.Equal(old.Labels, cur.Labels)
    	// Annotations are only used in endpoints in one case, so just compare that one
    	relevantAnnotationsChanged := old.Annotations[constants.AmbientRedirection] != cur.Annotations[constants.AmbientRedirection]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. operator/pkg/compare/compare.go

    	}
    
    	cur := obj
    	for _, nname := range nodeList {
    		ndata, ok := cur[nname]
    		if !ok || ndata == nil { // target path does not exist
    			return fmt.Errorf("targetPath '%v' does not exist in obj: '%v' is missing",
    				targetPath, nname)
    		}
    		switch nnode := ndata.(type) {
    		case map[string]any:
    			cur = nnode
    		default: // target path type does not match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj.filters

            <Extensions>h;hpp;h++;hxx;hm;inl;inc;xsd</Extensions>
          </Filter>
          <Filter Include="Resource Files">
            <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
          </Filter>
        </ItemGroup>
        <ItemGroup Label="Sources"/>
        <ItemGroup Label="Headers"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 808 bytes
    - Viewed (0)
  6. pkg/util/rlimit/rlimit_linux.go

    import (
    	"golang.org/x/sys/unix"
    )
    
    // SetNumFiles sets the linux rlimit for the maximum open files.
    func SetNumFiles(maxOpenFiles uint64) error {
    	return unix.Setrlimit(unix.RLIMIT_NOFILE, &unix.Rlimit{Max: maxOpenFiles, Cur: maxOpenFiles})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 866 bytes
    - Viewed (0)
  7. src/runtime/traceback_test.go

    	var tbs []*traceback
    	var cur *traceback
    	tbLen := len(tb)
    	for len(tb) > 0 {
    		var line string
    		off = tbLen - len(tb)
    		line, tb, _ = strings.Cut(tb, "\n")
    		lineNo++
    		switch {
    		case strings.HasPrefix(line, "goroutine "):
    			cur = &traceback{}
    			tbs = append(tbs, cur)
    		case line == "":
    			// Separator between goroutines
    			cur = nil
    		case line[0] == '\t':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  8. src/net/rlimit_unix.go

    func concurrentThreadsLimit() int {
    	var rlim syscall.Rlimit
    	if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rlim); err != nil {
    		return 500
    	}
    	r := rlim.Cur
    	if r > 500 {
    		r = 500
    	} else if r > 30 {
    		r -= 30
    	}
    	return int(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/inline.go

    func longestSequence(s string, b byte) int {
    	max := 0
    	cur := 0
    	for i := range s {
    		if s[i] == b {
    			cur++
    		} else {
    			if cur > max {
    				max = cur
    			}
    			cur = 0
    		}
    	}
    	if cur > max {
    		max = cur
    	}
    	return max
    }
    
    func (x *Code) PrintText(buf *bytes.Buffer) {
    	htmlEscaper.WriteString(buf, x.Text)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. src/internal/zstd/huff.go

    	// the first symbol for that weight. We shift the indexes to
    	// also store how many we have seen so far,
    	next := uint32(0)
    	for i := 0; i < tableBits; i++ {
    		cur := next
    		next += weightMark[i+1] << i
    		weightMark[i+1] = cur
    	}
    
    	for i, w := range weights[:count] {
    		if w == 0 {
    			continue
    		}
    		length := uint32(1) << (w - 1)
    		tval := uint16(i)<<8 | (uint16(tableBits) + 1 - uint16(w))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top