Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for foo77b (0.14 sec)

  1. test/escape2n.go

    }
    
    func foo77(z []interface{}) { // ERROR "z does not escape$"
    	myprint(nil, z...) // z does not escape
    }
    
    func foo77a(z []interface{}) { // ERROR "z does not escape$"
    	myprint1(nil, z...)
    }
    
    func foo77b(z []interface{}) { // ERROR "leaking param: z$"
    	var ppi **interface{}
    	*ppi = myprint1(nil, z...)
    }
    
    func foo77c(z []interface{}) { // ERROR "leaking param: z$"
    	sink = myprint1(nil, z...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. test/escape2.go

    }
    
    func foo77(z []interface{}) { // ERROR "z does not escape$"
    	myprint(nil, z...) // z does not escape
    }
    
    func foo77a(z []interface{}) { // ERROR "z does not escape$"
    	myprint1(nil, z...)
    }
    
    func foo77b(z []interface{}) { // ERROR "leaking param: z$"
    	var ppi **interface{}
    	*ppi = myprint1(nil, z...)
    }
    
    func foo77c(z []interface{}) { // ERROR "leaking param: z$"
    	sink = myprint1(nil, z...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

        }
      }
      function {
        signature {
          name: "foo15"
        }
      }
      function {
        signature {
          name: "foo16"
        }
      }
      function {
        signature {
          name: "foo17"
        }
      }
      function {
        signature {
          name: "foo18"
        }
      }
      function {
        signature {
          name: "foo19"
        }
      }
      function {
        signature {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProjectProfileTest.groovy

        def "provides sorted tasks"() {
            def profile = new ProjectProfile(":foo")
            def a = profile.getTaskProfile("foo:a").completed(Stub(TaskState)).setStart(100).setFinish(300)
            def b = profile.getTaskProfile("foo:b").completed(Stub(TaskState)).setStart(300).setFinish(300)
            def c = profile.getTaskProfile("foo:c").completed(Stub(TaskState)).setStart(300).setFinish(300)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue39634.go

    // crash 4
    type Numeric4 interface{t4 /* ERROR "not a type" */ }
    func t4[T Numeric4](s[]T){if( /* ERROR "non-boolean" */ 0){*s /* ERROR "cannot indirect" */ [0]}}
    
    // crash 7
    type foo7 interface { bar() }
    type x7[A any] struct{ foo7 }
    func main7() { var _ foo7 = x7[int]{} }
    
    // crash 8
    type foo8[A any] interface { ~A /* ERROR "cannot be a type parameter" */ }
    func bar8[A foo8[A]](a A) {}
    
    // crash 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            mavenRepo.module("org", "c").publish()
            //a1
            //b->a2->c
    
            buildFile << """
                $common
    
                dependencies {
                    conf 'org:a:1.0', 'foo:b:1.0'
                }
    
                configurations.conf.resolutionStrategy.dependencySubstitution.all {
                    if (it.requested.group == 'foo') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            e1.dependsOn(b2).publish()
            b2.publish()
    
            buildFile << """
                dependencies {
                    implementation 'org.foo:a:1.0'
                    implementation 'org.foo:b:1.0'
                    implementation 'org.foo:d:1.0'
                    implementation 'org.foo:e:1.0'
    
                    modules.module('org.foo:c') { replacedBy('org.foo:f') }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    				makeGCContainer("foo5", "bar5", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo6", "bar6", 2, 2, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo7", "bar7", 1, 1, runtimeapi.ContainerState_CONTAINER_EXITED),
    			},
    			remain:               []int{0, 2, 4, 6, 8, 9},
    			evictTerminatingPods: false,
    			allSourcesReady:      true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. pkg/apis/storage/validation/validation_test.go

    				Name:         "driverB",
    				NodeID:       "nodeA",
    				TopologyKeys: []string{"keyA", "keyB"},
    			}},
    		},
    	}, {
    		// multiple drivers with same node IDs, topology keys
    		ObjectMeta: metav1.ObjectMeta{Name: "foo7"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1"},
    			}, {
    				Name:         "driver2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            def fooA = task("foo", project: projectA)
            def barA = task("bar", project: projectA)
    
            def fooB = task("foo", project: projectB)
            def barB = task("bar", project: projectB)
    
            when:
            addToGraphAndPopulate(fooA, barA, fooB, barB)
            def taskNode1 = selectNextTaskNode()
            def taskNode2 = selectNextTaskNode()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
Back to top