Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/model/typed_xds_cache.go

    		// after we call Clear or ClearAll.
    		return
    	}
    	cur, f := l.store.Get(k)
    	if f {
    		// This is the stale or same resource
    		if token <= cur.token {
    			return
    		}
    		if l.enableAssertions {
    			l.assertUnchanged(k, cur.value, value)
    		}
    	}
    
    	dependentConfigs := entry.DependentConfigs()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. tools/docker-builder/types.go

    		// This legacy env var was to workaround the old build logic not being very smart
    		// In the new builder, we automagically detect this. So just insert the 'default' variant
    		cur := sets.New(variants...)
    		cur.Insert(DefaultVariant)
    		variants = sets.SortedList(cur)
    	}
    
    	arch := []string{"linux/amd64"}
    	if legacy, f := os.LookupEnv("DOCKER_ARCHITECTURES"); f {
    		arch = strings.Split(legacy, ",")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top