Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for lineLess (0.13 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. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory.go

    		return newETCD3ProberMonitor(c)
    	default:
    		return nil, fmt.Errorf("unknown storage type: %s", c.Type)
    	}
    }
    
    // Prober is an interface that defines the Probe function for doing etcd readiness/liveness checks.
    type Prober interface {
    	Probe(ctx context.Context) error
    	Close() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/scale_test.go

    					Spec: v1.PodSpec{},
    					Status: v1.PodStatus{
    						Phase:  v1.PodPhase(v1.PodReady),
    						PodIPs: []v1.PodIP{{IP: "127.0.0.1"}},
    					},
    				}
    				for j := 0; j < numContainers; j++ {
    					// use only liveness probes for simplicity, initial state is success for them
    					pod.Spec.Containers = append(pod.Spec.Containers, v1.Container{
    						Name:          fmt.Sprintf("container%d", j),
    						LivenessProbe: newProbe(handler),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober.go

    	httpprobe "k8s.io/kubernetes/pkg/probe/http"
    	tcpprobe "k8s.io/kubernetes/pkg/probe/tcp"
    	"k8s.io/utils/exec"
    
    	"k8s.io/klog/v2"
    )
    
    const maxProbeRetries = 3
    
    // Prober helps to check the liveness/readiness/startup of a container.
    type prober struct {
    	exec   execprobe.Prober
    	http   httpprobe.Prober
    	tcp    tcpprobe.Prober
    	grpc   grpcprobe.Prober
    	runner kubecontainer.CommandRunner
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/stackalloc.go

    			if f.pass.debug > stackDebug && s.values[v.ID].needSlot {
    				fmt.Printf("%s needs a stack slot\n", v)
    			}
    			if v.Op == OpStoreReg {
    				s.values[v.Args[0].ID].spill = v
    			}
    		}
    	}
    
    	// Compute liveness info for values needing a slot.
    	s.computeLive(spillLive)
    
    	// Build interference graph among values needing a slot.
    	s.buildInterferenceGraph()
    }
    
    func (s *stackAllocState) stackalloc() {
    	f := s.f
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    					TerminationGracePeriodSeconds: &longGracePeriod,
    				},
    			},
    			reason:              reasonUnknown,
    			expectedGracePeriod: longGracePeriod,
    		},
    		{
    			name: "liveness probe overrides pod termination grace period",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{{
    						Name: "foo", LivenessProbe: &v1.Probe{TerminationGracePeriodSeconds: &shortGracePeriod},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/prober_test.go

    		},
    	}
    
    	for i, test := range tests {
    		for _, probeType := range [...]probeType{liveness, readiness, startup} {
    			prober := &prober{
    				recorder: &record.FakeRecorder{},
    			}
    			testID := fmt.Sprintf("%d-%s", i, probeType)
    			testContainer := v1.Container{Env: test.env}
    			switch probeType {
    			case liveness:
    				testContainer.LivenessProbe = test.probe
    			case readiness:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

                - name: WAIT_FOR_DATASTORE
                  value: "true"
              securityContext:
                privileged: true
              livenessProbe:
                httpGet:
                  path: /liveness
                  port: 9099
                  host: localhost
                periodSeconds: 10
                initialDelaySeconds: 10
                failureThreshold: 6
              readinessProbe:
                httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  9. pkg/kubelet/prober/common_test.go

    		f := reflect.ValueOf(&probeSpec).Elem().FieldByName(field)
    		if f.Int() == 0 {
    			f.SetInt(value)
    		}
    	}
    
    	switch probeType {
    	case readiness:
    		pod.Spec.Containers[0].ReadinessProbe = &probeSpec
    	case liveness:
    		pod.Spec.Containers[0].LivenessProbe = &probeSpec
    	case startup:
    		pod.Spec.Containers[0].StartupProbe = &probeSpec
    	}
    }
    
    func newTestManager() *manager {
    	podManager := kubepod.NewBasicPodManager()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. test/live_regabi.go

    	i9 = y                  // make y escape so the line above has to call convT
    	return x != y
    }
    
    // liveness formerly confused by UNDEF followed by RET,
    // leading to "live at entry to f10: ~r1" (unnamed result).
    
    func f10() string {
    	panic(1)
    }
    
    // liveness formerly confused by select, thinking runtime.selectgo
    // can return to next instruction; it always jumps elsewhere.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top