Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 930 for sloc (0.54 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

                    }
                }
    
                subprojects {
                    tasks.create('slow', SlowTask)
                }
                project(':a') {
                    tasks.slow.dependsOn(project(':b').tasks.slow, project(':c').tasks.slow)
                }
            """
    
            expect:
            2.times {
                server.expectConcurrent("b", "c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. test/fixedbugs/issue27518a.go

    		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.
    
    	// 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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestTaskIntegrationTest.groovy

            given:
            file('src/test/java/MyTest.java') << standaloneTestClass
            file("src/test/java/Slow.java") << """public interface Slow {}"""
    
            settingsFile << "rootProject.name = 'Sample'"
            buildFile << """apply plugin: 'java'
                test {
                    options {
                        excludeCategories = ["Slow"]
                    }
                    $configureTestFramework
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_request_forms_and_files/test_tutorial001_an.py

            {
                "detail": [
                    {
                        "type": "missing",
                        "loc": ["body", "file"],
                        "msg": "Field required",
                        "input": None,
                    },
                    {
                        "type": "missing",
                        "loc": ["body", "fileb"],
                        "msg": "Field required",
                        "input": None,
                    },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/location.go

    //	                          parent = &{N: s, Type: string}
    type LocalSlot struct {
    	N    *ir.Name    // an ONAME *ir.Name representing a stack location.
    	Type *types.Type // type of slot
    	Off  int64       // offset of slot in N
    
    	SplitOf     *LocalSlot // slot is a decomposition of SplitOf
    	SplitOffset int64      // .. at this offset.
    }
    
    func (s LocalSlot) String() string {
    	if s.Off == 0 {
    		return fmt.Sprintf("%v[%v]", s.N, s.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/passbm_test.go

    	for i := 0; i < passCount; i++ {
    		fn(fun.f)
    	}
    	b.StopTimer()
    }
    
    func genFunction(size int) []bloc {
    	var blocs []bloc
    	elemType := types.Types[types.TINT64]
    	ptrType := elemType.PtrTo()
    
    	valn := func(s string, m, n int) string { return fmt.Sprintf("%s%d-%d", s, m, n) }
    	blocs = append(blocs,
    		Bloc("entry",
    			Valu(valn("store", 0, 4), OpInitMem, types.TypeMem, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. test/fixedbugs/bug369.go

    	check(err)
    	importcfg := string(stdlibimportcfg) + "\npackagefile test/slow=" + tmp("test/slow.o") + "\npackagefile test/fast=" + tmp("test/fast.o")
    	os.WriteFile(tmp("importcfg"), []byte(importcfg), 0644)
    
    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=test/slow", "-N", "-o", tmp("test/slow.o"), "pkg.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr.mlir

    // CHECK-NEXT:   func @main([[ARG0:%.+]]: tensor<?xi32> loc({{.*}})) -> tensor<?xi32> {
    // CHECK-NEXT:     [[IDENTITY:%.+]] = "tf.Identity"([[ARG0]]) : (tensor<?xi32>) -> tensor<?xi32> loc(unknown)
    // CHECK-NEXT:     return [[IDENTITY]] : tensor<?xi32> loc(unknown)
    // CHECK-NEXT:   } loc(unknown)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 13:27:00 UTC 2022
    - 998 bytes
    - Viewed (0)
  9. test/fixedbugs/issue27695c.go

    }
    
    func f(d func(error) error) error {
    	// Initialize callee args section with a bad pointer.
    	g(badPtr, badPtr, badPtr, badPtr)
    
    	// Then call a function which returns a pointer.
    	// That return slot starts out holding a bad pointer.
    	return d(io.EOF)
    }
    
    //go:noinline
    func g(x, y, z, w uintptr) {
    }
    
    type T struct {
    }
    
    func (t *T) Foo(e error) error {
    	runtime.GC()
    	return e
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 13 22:52:09 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. releasenotes/notes/protocol-detection-timeout.yaml

        for misconfigured server first protocols rather than failing fast.
    
        This timeout has been disabled by default. This has the following impacts:
    
        - Non "server first" protocols will no longer have a risk of telemetry or traffic failures during slow connections
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top