Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 296 for live1 (0.04 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. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

         *
         * The collection is live, so that the contents are queried as required on query of the collection.
         */
        FileCollectionInternal create(MinimalFileSet contents);
    
        /**
         * Creates a {@link FileCollection} with the given contents, and built by the given tasks.
         *
         * The collection is live, so that the contents are queried as required on query of the collection.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kube/inject/testdata/inject/startup_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/startupz":{"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)
  10. pkg/kube/inject/testdata/inject/hello-probes.proxyHoldsApplication.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
            lifecycle:
              postStart:
                exec:
                  command:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top