Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 808 for live0 (0.05 sec)

  1. 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)
  2. src/text/tabwriter/tabwriter.go

    		}
    	}
    	return
    }
    
    // Format the text between line0 and line1 (excluding line1); pos
    // is the buffer position corresponding to the beginning of line0.
    // Returns the buffer position corresponding to the beginning of
    // line1 and an error, if any.
    func (b *Writer) format(pos0 int, line0, line1 int) (pos int) {
    	pos = pos0
    	column := len(b.widths)
    	for this := line0; this < line1; this++ {
    		line := b.lines[this]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

                // 1
                """       | Error:              {description}line0{normal}
           |     Caused by:      {description}lastLine{normal}""",
    
                // 5
                """       | Error:              {description}line0{normal}
           |     Caused by:      {description}line1{normal}
           |     Caused by:      {description}line2{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/runtime/testdata/testprog/gc.go

    }
    
    func GCMemoryLimit() {
    	gcMemoryLimit(100)
    }
    
    func GCMemoryLimitNoGCPercent() {
    	gcMemoryLimit(-1)
    }
    
    // Test SetMemoryLimit functionality.
    //
    // This test lives here instead of runtime/debug because the entire
    // implementation is in the runtime, and testprog gives us a more
    // consistent testing environment to help avoid flakiness.
    func gcMemoryLimit(gcPercent int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
Back to top