Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 821 for live1 (0.46 sec)

  1. src/sort/example_wrapper_test.go

    	printOrgans(s)
    
    	// Output:
    	// Organs by weight:
    	// prostate (62g)
    	// pancreas (131g)
    	// spleen   (162g)
    	// heart    (290g)
    	// brain    (1340g)
    	// liver    (1494g)
    	// Organs by name:
    	// brain    (1340g)
    	// heart    (290g)
    	// liver    (1494g)
    	// pancreas (131g)
    	// prostate (62g)
    	// spleen   (162g)
    }
    
    func printOrgans(s []*Organ) {
    	for _, o := range s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    			// Check to make sure only input variables are live.
    			for i, n := range lv.vars {
    				if !liveout.Get(int32(i)) {
    					continue
    				}
    				if n.Class == ir.PPARAM {
    					continue // ok
    				}
    				base.FatalfAt(n.Pos(), "bad live variable at entry of %v: %L", lv.fn.Nname, n)
    			}
    
    			// Record live variables.
    			live := &lv.livevars[index]
    			live.Or(*live, liveout)
    		}
    
    		if lv.doClobber {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue32477.go

    // run
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure we use the deferreturn live map instead of
    // the entry live map when handling a segv in a function
    // that defers.
    
    package main
    
    import "runtime"
    
    var finalized bool
    var err string
    
    type HeapObj [8]int64
    
    const filler int64 = 0x123456789abcdef0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:51:04 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue27518a.go

    	defer func() {
    		// Ignore the panic.
    		recover()
    		// Force a stack walk. Go 1.11 will fail because x is now
    		// considered live again.
    		runtime.GC()
    	}()
    	// Make x live at the defer's PC.
    	runtime.KeepAlive(x)
    
    	// x is no longer live. Garbage collect the [32]*int on the
    	// heap.
    	runtime.GC()
    	// At this point x's dead stack slot points to dead memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/bigger-applications.md

    !!! check
        The `prefix`, `tags`, `responses`, and `dependencies` parameters are (as in many other cases) just a feature from **FastAPI** to help you avoid code duplication.
    
    ### Import the dependencies
    
    This code lives in the module `app.routers.items`, the file `app/routers/items.py`.
    
    And we need to get the dependency function from the module `app.dependencies`, the file `app/dependencies.py`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/merge-probers.yaml.injected

            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/new/livez":{"httpGet":{"path":"/testLive","port":8008}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            lifecycle:
              postStart:
                exec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    		typeConverter,
    		&FakeObjectConvertor{},
    		&FakeObjectDefaulter{},
    		gvk.GroupVersion(),
    		gvk.GroupVersion(),
    		nil,
    	)
    	if err != nil {
    		panic(err)
    	}
    	live := &unstructured.Unstructured{}
    	live.SetKind(gvk.Kind)
    	live.SetAPIVersion(gvk.GroupVersion().String())
    	// This is different from `internal.NewDefaultFieldManager` because:
    	// 1. We don't want to create a `internal.FieldManager`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		"/healthz/wrapping-health",
    		"/livez",
    		"/livez/delegate-health",
    		"/livez/log",
    		"/livez/ping",
    		"/livez/poststarthook/delegate-post-start-hook",
    		"/livez/poststarthook/generic-apiserver-start-informers",
    		"/livez/poststarthook/max-in-flight-filter",
    		"/livez/poststarthook/storage-object-count-tracker-hook",
    		"/livez/poststarthook/wrapping-post-start-hook",
    		"/metrics",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pkg/serviceaccount/metrics.go

    			Help:           "Cumulative stale projected service account tokens used",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// mauallyCreatedTokensTotal is the number of manually created secret-based long lived tokens.
    	manuallyCreatedTokensTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeServiceAccountSubsystem,
    			Name:           "legacy_manual_token_uses_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/ready_live.yaml.injected

              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top