Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for injecting (0.12 sec)

  1. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) HandlePodCleanups(ctx context.Context) error {
    	// The kubelet lacks checkpointing, so we need to introspect the set of pods
    	// in the cgroup tree prior to inspecting the set of pods in our pod manager.
    	// this ensures our view of the cgroup tree does not mistakenly observe pods
    	// that are added after the fact...
    	var (
    		cgroupPods map[types.UID]cm.CgroupName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    // at runtime that are necessary for running the Kubelet. This is a temporary solution for grouping
    // these objects while we figure out a more comprehensive dependency injection story for the Kubelet.
    type Dependencies struct {
    	Options []Option
    
    	// Injected Dependencies
    	Auth                      server.AuthInterface
    	CAdvisorInterface         cadvisor.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

    ess_total{}\n  [$__rate_interval])\n)","legendFormat":"Success"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum(\n  rate(\n    sidecar_injection_failure_total{}\n  [$__rate_interval])\n)","legendFormat":"Failure"}],"title":"Injection","type":"timeseries"}],"refresh":"15s","schemaVersion":39,"templating":{"list":[{"name":"datasource","query":"prometheus","type":"datasource"}]},"time":{"from":"now-30m","to":"now"},"timezone":"utc","title":"Istio Control Plane Dashboard","uid":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    				mark := p.Mark &^ PFX_X64B
    				if pc&63 == 60 {
    					p.Pc += 4
    					m += 4
    					mark |= PFX_X64B
    				}
    
    				// Marks may be adjusted if a too-far conditional branch is
    				// fixed up above. Likewise, inserting a NOP may cause a
    				// branch target to become too far away.  We need to run
    				// another iteration and verify no additional changes
    				// are needed.
    				if mark != p.Mark {
    					bflag = 1
    					p.Mark = mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    		return l
    	}
    	return q
    }
    
    // isJump returns whether p is a jump instruction.
    // It is used to ensure that no standalone or macro-fused jump will straddle
    // or end on a 32 byte boundary by inserting NOPs before the jumps.
    func isJump(p *obj.Prog) bool {
    	return p.To.Target() != nil || p.As == obj.AJMP || p.As == obj.ACALL ||
    		p.As == obj.ARET || p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    				c.ctxt.Arch.ByteOrder.PutUint32(bp, out[i])
    				bp = bp[4:]
    				psz += 4
    			}
    		}
    	}
    
    	// Mark nonpreemptible instruction sequences.
    	// We use REGTMP as a scratch register during call injection,
    	// so instruction sequences that use REGTMP are unsafe to
    	// preempt asynchronously.
    	obj.MarkUnsafePoints(c.ctxt, c.cursym.Func().Text, c.newprog, c.isUnsafePoint, c.isRestartable)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top