Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for pubs (0.04 sec)

  1. src/runtime/sema.go

    	// addresses, it is kept balanced on average by maintaining a heap ordering
    	// on the ticket: s.ticket <= both s.prev.ticket and s.next.ticket.
    	// https://en.wikipedia.org/wiki/Treap
    	// https://faculty.washington.edu/aragon/pubs/rst89.pdf
    	//
    	// s.ticket compared with zero in couple of places, therefore set lowest bit.
    	// It will not affect treap's quality noticeably.
    	s.ticket = cheaprand() | 1
    	s.parent = last
    	*pt = s
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/eviction_test.go

    	testcases := []struct {
    		name     string
    		pdbs     []runtime.Object
    		policies []*policyv1.UnhealthyPodEvictionPolicyType
    		eviction *policy.Eviction
    
    		badNameInURL bool
    
    		expectError   string
    		expectDeleted bool
    		podPhase      api.PodPhase
    		podName       string
    	}{
    		{
    			name: "matching pdbs with no disruptions allowed, pod running",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    	// for "pod" to be scheduled.
    	// Note that both `state` and `nodeInfo` are deep copied.
    	SelectVictimsOnNode(ctx context.Context, state *framework.CycleState,
    		pod *v1.Pod, nodeInfo *framework.NodeInfo, pdbs []*policy.PodDisruptionBudget) ([]*v1.Pod, int, *framework.Status)
    	// OrderedScoreFuncs returns a list of ordered score functions to select preferable node where victims will be preempted.
    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. pkg/controller/disruption/disruption.go

    	// PodDisruptionBudgets are found.  We don't return that as an error to the
    	// caller.
    	pdbs, err := dc.pdbLister.GetPodPodDisruptionBudgets(pod)
    	if err != nil {
    		logger.V(4).Info("No PodDisruptionBudgets found for pod, PodDisruptionBudget controller will avoid syncing.", "pod", klog.KObj(pod))
    		return nil
    	}
    
    	if len(pdbs) > 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    	this symbol.
    
    	In the <remote>, # or @ can be used to introduce a symbol version.
    
    	Examples:
    	//go:cgo_import_dynamic puts
    	//go:cgo_import_dynamic puts puts#GLIBC_2.2.5
    	//go:cgo_import_dynamic puts puts#GLIBC_2.2.5 "libc.so.6"
    
    	A side effect of the cgo_import_dynamic directive with a
    	library is to make the final binary depend on that dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. Makefile.core.mk

    $(TARGET_OUT):
    	@mkdir -p $@
    
    # If the hub is not explicitly set, use default to istio.
    HUB ?=istio
    ifeq ($(HUB),)
      $(error "HUB cannot be empty")
    endif
    
    # For dockerx builds, allow HUBS which is a space separated list of hubs. Default to HUB.
    HUBS ?= $(HUB)
    
    # If tag not explicitly set in users' .istiorc.mk or command line, default to the git sha.
    TAG ?= $(shell git rev-parse --verify HEAD)
    ifeq ($(TAG),)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption_test.go

    )
    
    type FakePostFilterPlugin struct {
    	numViolatingVictim int
    }
    
    func (pl *FakePostFilterPlugin) SelectVictimsOnNode(
    	ctx context.Context, state *framework.CycleState, pod *v1.Pod,
    	nodeInfo *framework.NodeInfo, pdbs []*policy.PodDisruptionBudget) (victims []*v1.Pod, numViolatingVictim int, status *framework.Status) {
    	return append(victims, nodeInfo.Pods[0].Pod), pl.numViolatingVictim, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gccgo.go

    	objdir := a.Objdir
    	var absOfiles []string
    	for _, f := range ofiles {
    		absOfiles = append(absOfiles, mkAbs(objdir, f))
    	}
    	var arArgs []string
    	if cfg.Goos == "aix" && cfg.Goarch == "ppc64" {
    		// AIX puts both 32-bit and 64-bit objects in the same archive.
    		// Tell the AIX "ar" command to only care about 64-bit objects.
    		arArgs = []string{"-X64"}
    	}
    	absAfile := mkAbs(objdir, afile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. pkg/volume/downwardapi/downwardapi.go

    func (d *downwardAPIVolume) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       true,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    }
    
    // SetUp puts in place the volume plugin.
    // This function is not idempotent by design. We want the data to be refreshed periodically.
    // The internal sync interval of kubelet will drive the refresh of data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. test/codegen/mathbits.go

    	// s390x:"SUBE"
    	// mips64:"SUBV","SGTU"
    	// riscv64: "SUB","SLTU"
    	return bits.Sub(x, 7, ci)
    }
    
    func SubZ(x, y uint) (r, co uint) {
    	// amd64:"SUBQ","SBBQ","NEGQ",-"NEGL"
    	// arm64:"SUBS","NGC","NEG",-"SBCS",-"ADD",-"SUB\t",-"CMP"
    	// loong64:"SUBV","SGTU"
    	// ppc64x:"SUBC", -"SUBE", "SUBZE", "NEG"
    	// s390x:"SUBC"
    	// mips64:"SUBV","SGTU"
    	// riscv64: "SUB","SLTU"
    	return bits.Sub(x, y, 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top