Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for lineLess (0.14 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. 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)
  3. samples/health-check/liveness-http-same-port.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: liveness-http
      labels:
        app: liveness-http
        service: liveness-http
    spec:
      ports:
      - name: http
        port: 8001
      selector:
        app: liveness-http
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: liveness-http
    spec:
      selector:
        matchLabels:
          app: liveness-http
          version: v1
      template:
        metadata:
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 07 20:03:32 UTC 2020
    - 734 bytes
    - Viewed (0)
  4. test/live1.go

    // "internal error: ... recorded as live on entry" errors
    // from the liveness code.
    //
    // This code contains methods or other construct that
    // trigger the generation of wrapper functions with no
    // clear line number (they end up using line 1), and those
    // would have annotations printed if we used -live=1,
    // like the live.go test does.
    // Instead, this test relies on the fact that the liveness
    // analysis turns any non-live parameter on entry into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue27518a.go

    	// Trigger a sigpanic. Since this is an implicit panic, we
    	// don't have an explicit liveness map here.
    	// Traceback used to use the liveness map of the most recent defer,
    	// but in that liveness map, x will be live again even though
    	// it points to dead memory. The fix is to use the liveness
    	// map of a deferreturn call instead.
    	*nilp = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

                    rm -rf /var/log/fluentd-buffers;
                    exit 1;
                  fi;
                  touch -d "${LIVENESS_THRESHOLD_SECONDS} seconds ago" /tmp/marker-liveness;
                  if [ -z "$(find /var/log/fluentd-buffers -type d -newer /tmp/marker-liveness -print -quit)" ];
                  then
                    exit 1;
                  fi;
          # BEGIN_PROMETHEUS_TO_SD
          - name: prometheus-to-sd-exporter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue8048.go

    	// so x == nil, so the println(*x) faults reading
    	// from nil. The compiler will lay out the code
    	// so that the if body occurs above the *x,
    	// so if the liveness info at the *x is used, it will
    	// find the liveness at the call to runtime.GC.
    	// It will think y is live, but y is uninitialized,
    	// and the runtime will crash detecting a bad slice.
    	// The runtime should see that there are no defers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  8. test/fixedbugs/bug484.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The liveness code used to say that, in func g, s was live
    // starting at its declaration, because it appears to have its
    // address taken by the closure (different s, but the parser
    // gets slightly confused, a separate bug). The liveness analysis
    // saw s as having its address taken but the register optimizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. test/stackobj3.go

    		c = n
    	})
    	f(s, true)
    	if c != 2 {
    		panic("bad liveness")
    	}
    }
    
    func fFalse() {
    	var s StkObj
    	s.h = new(HeapObj)
    	c = -1
    	n = 0
    	runtime.SetFinalizer(s.h, func(h *HeapObj) {
    		// Remember at what phase the heap object was collected.
    		c = n
    	})
    	f(s, false)
    	if c != 0 {
    		panic("bad liveness")
    	}
    }
    
    func main() {
    	fTrue()
    	fFalse()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:16 UTC 2018
    - 1.4K bytes
    - Viewed (0)
Back to top