Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for lineLess (0.15 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

      std::array<Predicate*, 1> operands_;
    };
    
    // Represents the liveness of an induction variable.  For users inside the loop
    // this represents the "current" liveness of the induction variable.  For users
    // outside the loop it represents the "last" liveness of the induction variable.
    //
    // More concretely, an and recurrence {S,&,X}<loop> represents the liveness of V
    // in the following graph:
    //
    //   V = Merge(S', V_NextIt)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				// A restartable init container does not have to take into account its
    				// liveness probe when it determines to start the next init container.
    				if container.LivenessProbe != nil {
    					liveness, found := m.livenessManager.Get(status.ID)
    					if !found {
    						// If the liveness probe has not been run, wait for it.
    						break
    					}
    					if liveness == proberesults.Failure {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    		}
    	}
    
    	blockLocs := state.liveness()
    	state.buildLocationLists(blockLocs)
    
    	// Populate "rval" with what we've computed.
    	rval.Slots = state.slots
    	rval.VarSlots = state.varSlots
    	rval.Vars = state.vars
    	rval.LocationLists = state.lists
    }
    
    // liveness walks the function in control flow order, calculating the start
    // and end state of each block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// spec changed.
    			restart = true
    		} else if liveness, found := m.livenessManager.Get(containerStatus.ID); found && liveness == proberesults.Failure {
    			// If the container failed the liveness probe, we should kill it.
    			message = fmt.Sprintf("Container %s failed liveness probe", container.Name)
    			reason = reasonLivenessProbe
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	startOffset := uint8(0xff) // smallest offset that needs liveness info (slots with a lower offset is always live)
    	if liveInfo != nil {
    		startOffset = *(*uint8)(liveInfo)
    	}
    
    	isLive := func(off, slotIdx uint8) bool {
    		if liveInfo == nil || liveIdx <= 0 {
    			return true // no liveness info, always live
    		}
    		if off < startOffset {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    		}
    		s.curBlock = b
    		s.startRegsMask = 0
    		s.usedSinceBlockStart = 0
    
    		// Initialize regValLiveSet and uses fields for this block.
    		// Walk backwards through the block doing liveness analysis.
    		regValLiveSet.clear()
    		for _, e := range s.live[b.ID] {
    			s.addUse(e.ID, int32(len(b.Values))+e.dist, e.pos) // pseudo-uses from beyond end of block
    			regValLiveSet.add(e.ID)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // See NeverInjectSelector.
      repeated k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector alwaysInjectSelector = 12;
    
      //  If true, webhook or istioctl injector will rewrite PodSpec for liveness health check to redirect request to sidecar. This makes liveness check work even when mTLS is enabled.
      google.protobuf.BoolValue rewriteAppHTTPProbe = 16;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				SandboxID:         baseStatus.SandboxStatuses[0].Id,
    				ContainersToKill:  getKillMap(basePod, baseStatus, []int{1}),
    				ContainersToStart: []int{1},
    			},
    		},
    		"Kill and recreate the container if the liveness check has failed": {
    			mutatePodFn: func(pod *v1.Pod) {
    				pod.Spec.RestartPolicy = v1.RestartPolicyAlways
    			},
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	Funcalign       int
    	iscgo           bool
    	elfglobalsymndx int
    	interpreter     string
    
    	debug_s bool // backup old value of debug['s']
    	HEADR   int32
    
    	nerrors  int
    	liveness int64 // size of liveness data (funcdata), printed if -v
    
    	// See -strictdups command line flag.
    	checkStrictDups   int // 0=off 1=warning 2=error
    	strictDupMsgCount int
    )
    
    var (
    	Segtext      sym.Segment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: switch to using the new etcd endpoints introduced in 3.5.11 - /livez (for liveness probe) and /readyz (for readyness and startup probe). With this change it is no longer possible to deploy a custom etcd version older than 3.5.11 with kubeadm 1.31. If so, please upgrade. ([#124465](https://github.com/kubernetes/kubernetes/pull/124465),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top