Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 291 for live0 (0.04 sec)

  1. pkg/kube/inject/testdata/inject/startup_ready_live.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/hello/startupz":{"httpGet":{"port":3333}},"/app-health/world/livez":{"httpGet":{"port":90}},"/app-health/world/startupz":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/link/main.go

    	"cmd/link/internal/s390x"
    	"cmd/link/internal/wasm"
    	"cmd/link/internal/x86"
    	"fmt"
    	"internal/buildcfg"
    	"os"
    )
    
    // The bulk of the linker implementation lives in cmd/link/internal/ld.
    // Architecture-specific code lives in cmd/link/internal/GOARCH.
    //
    // Program initialization:
    //
    // Before any argument parsing is done, the Init function of relevant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/unsafe_test.go

    	var x uintptr
    	if always {
    		x = uintptr(unsafe.Pointer(a))
    	} else {
    		x = 0
    	}
    	// Clobber the global pointer. The only live ref
    	// to the allocated object is now x.
    	a = nil
    
    	// Convert to pointer so it should hold
    	// the object live across GC call.
    	p := unsafe.Pointer(x)
    
    	// Call gc.
    	runtime.GC()
    
    	// Convert back to uintptr.
    	y := uintptr(p)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/testdata/deadcode/typedesc.go

    // Copyright 2020 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.
    
    // Test that a live variable doesn't bring its type
    // descriptor live.
    
    package main
    
    type T [10]string
    
    var t T
    
    func main() {
    	println(t[8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 18:04:59 UTC 2020
    - 306 bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    There will be three items in the task list for this dataset.
    
    The stubs also exist at different "levels", where one test might wire stubs into a specific live implementation.
    In the next test that same "live implementation" will be used in a stub version instead.
    
    Not all live services have stubs, but can be added as needed.
    </body>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jul 02 16:47:10 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         */
        String getAsPath();
    
        /**
         * <p>Returns a {@code FileCollection} which contains the union of this collection and the given collection. The
         * returned collection is live, and tracks changes to both source collections.</p>
         *
         * <p>You can call this method in your build script using the {@code +} operator.</p>
         *
         * @param collection The other collection. Should not be null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // guaranteed to dominate all live-in values. On the other hand, it is still
    // possible that live-out values don't dominate the region. For example:
    //
    // ```
    // %0 = "tf.OpA"()
    // %1 = "tf.OpB"(%0)
    // %2 = "tf.OpC"(%0)
    // ```
    //
    // Assuming `tf.OpA` and `tf.OpC` are clustered together, the region will be
    // inserted right after `tf.OpC`. The live-out `%0`, however, is used by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue20029.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 20029: make sure we zero at VARKILLs of
    // ambiguously live variables.
    // The ambiguously live variable here is the hiter
    // for the inner range loop.
    
    package main
    
    import "runtime"
    
    func f(m map[int]int) {
    outer:
    	for i := 0; i < 10; i++ {
    		for k := range m {
    			if k == 5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 23:47:43 UTC 2017
    - 583 bytes
    - Viewed (0)
  9. test/fixedbugs/issue19078.go

    	for i := 0; i < 1000000; i++ {
    		_ = identity(u)         // installs u at return slot
    		_ = liveReturnSlot(nil) // incorrectly marks return slot as live
    	}
    }
    
    //go:noinline
    func liveReturnSlot(x *int) *int {
    	defer func() {}() // causes return slot to be marked live
    	sink = &x         // causes x to be moved to the heap, triggering allocation
    	return x
    }
    
    //go:noinline
    func identity(x uintptr) uintptr {
    	return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 19:39:15 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go

    	}
    	liveObjVersioned, err := f.toVersioned(liveObj)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to convert live object (%v) to proper version: %v", objectGVKNN(liveObj), err)
    	}
    	newObjTyped, err := f.typeConverter.ObjectToTyped(newObjVersioned, typed.AllowDuplicates)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top