Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for lineLess (0.11 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	for _, stmt := range f.Syntax.Stmt {
    		block, ok := stmt.(*LineBlock)
    		if !ok {
    			continue
    		}
    		sort.SliceStable(block.Line, func(i, j int) bool {
    			return lineLess(block.Line[i], block.Line[j])
    		})
    	}
    }
    
    // removeDups removes duplicate replace directives.
    //
    // Later replace directives take priority.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			if len(lines) == 0 {
    				continue
    			}
    		}
    		stmts = append(stmts, stmt)
    	}
    	syntax.Stmt = stmts
    }
    
    // lineLess returns whether li should be sorted before lj. It sorts
    // lexicographically without assigning any special meaning to tokens.
    func lineLess(li, lj *Line) bool {
    	for k := 0; k < len(li.Token) && k < len(lj.Token); k++ {
    		if li.Token[k] != lj.Token[k] {
    			return li.Token[k] < lj.Token[k]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. samples/health-check/liveness-command.yaml

    # Liveness service
    ##################################################################################################
    apiVersion: v1
    kind: Service
    metadata:
      name: liveness
      labels:
        app: liveness
        service: liveness
    spec:
      ports:
      - port: 80
        name: http
      selector:
        app: liveness
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 26 14:35:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    // Garbage collector liveness bitmap generation.
    
    // The command line flag -live causes this code to print debug information.
    // The levels are:
    //
    //	-live (aka -live=1): print liveness lists as code warnings at safe points
    //	-live=2: print an assembly listing with liveness annotations
    //
    // Each level includes the earlier output as well.
    
    package liveness
    
    import (
    	"fmt"
    	"os"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/prober_manager.go

    			m.workers[key] = w
    			go w.run()
    		}
    
    		if c.LivenessProbe != nil {
    			key.probeType = liveness
    			if _, ok := m.workers[key]; ok {
    				klog.V(8).ErrorS(nil, "Liveness probe already exists for container",
    					"pod", klog.KObj(pod), "containerName", c.Name)
    				return
    			}
    			w := newWorker(m, liveness, pod, c)
    			m.workers[key] = w
    			go w.run()
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/worker_test.go

    			},
    			{ // No container status
    				podStatus: &otherStatus,
    				expectContinue: map[string]bool{
    					liveness.String():  true,
    					readiness.String(): true,
    					startup.String():   true,
    				},
    			},
    			{ // Container waiting
    				podStatus: &pendingStatus,
    				expectContinue: map[string]bool{
    					liveness.String():  true,
    					readiness.String(): true,
    					startup.String():   true,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. docs/metrics/healthcheck/README.md

    # MinIO Healthcheck
    
    MinIO server exposes three un-authenticated, healthcheck endpoints liveness probe and a cluster probe at `/minio/health/live` and `/minio/health/cluster` respectively.
    
    ## Liveness probe
    
    This probe always responds with '200 OK'. Only fails if 'etcd' is configured and unreachable. When liveness probe fails, Kubernetes like platforms restart the container.
    
    ```
    livenessProbe:
      httpGet:
        path: /minio/health/live
        port: 9000
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. docs/metrics/README.md

    ## Healthcheck Probe
    
    MinIO server has two healthcheck related un-authenticated endpoints, a liveness probe to indicate if server is responding, cluster probe to check if server can be taken down for maintenance.
    
    - Liveness probe available at `/minio/health/live`
    - Cluster probe available at `/minio/health/cluster`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. cmd/healthcheck-router.go

    	healthCheckClusterPath     = "/cluster"
    	healthCheckClusterReadPath = "/cluster/read"
    	healthCheckPathPrefix      = minioReservedBucketPath + healthCheckPath
    )
    
    // registerHealthCheckRouter - add handler functions for liveness and readiness routes.
    func registerHealthCheckRouter(router *mux.Router) {
    	// Healthcheck router
    	healthRouter := router.PathPrefix(healthCheckPathPrefix).Subrouter()
    
    	// Cluster check handler to verify cluster is active
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 23 11:12:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.h

    //              v   v
    //               ADD
    //
    // can have its inputs independently dead or alive based on the runtime values
    // of PRED0 and PRED1.
    //
    // It is tempting to call this a liveness analysis but I avoided that because
    // "liveness" already has other connotations.
    class DeadnessAnalysis {
     public:
      // An opaque representation of a predicate.  DeadnessPredicate
      // instances that compare equal via operator== represent predicates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top