Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for foo4 (0.32 sec)

  1. tensorflow/cc/framework/cc_op_gen_test.cc

      ExpectHasSubstr(h_file_text, "class Foo {");
      ExpectDoesNotHaveSubstr(h_file_text, "class Foo1");
      ExpectDoesNotHaveSubstr(h_file_text, "class Foo2");
    
      // With ApiDef
      TF_ASSERT_OK(api_def_map.LoadApiDef(api_def));
      GenerateCcOpFiles(env, op_defs, api_def_map, &h_file_text,
                        &internal_h_file_text);
      ExpectHasSubstr(h_file_text, "class Foo1");
      ExpectHasSubstr(h_file_text, "typedef Foo1 Foo2");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 20:04:30 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. test/fixedbugs/bug441.go

    // in inlined functions.  Issue 3593.
    
    package main
    
    var did int
    
    func main() {
    	foo(side())
    	foo2(side(), side())
    	foo3(side(), side())
    	T.m1(T(side()))
    	T(1).m2(side())
    	const want = 7
    	if did != want {
    		println("BUG: missing", want-did, "calls")
    	}
    }
    
    func foo(_ int) {}
    func foo2(_, _ int) {}
    func foo3(int, int) {}
    type T int
    func (_ T) m1() {}
    func (t T) m2(_ int) {}
    
    func side() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 641 bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue47747.go

    // 	var b Bar[t]
    // 	f.Foo(&b)
    // 	return t(b)
    // }
    
    // Test case 2 from issue
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // type Fooer2[t any] interface {
    // 	Foo()
    // }
    // 
    // type Foo2[t any] t
    // 
    // func (f *Foo2[t]) Foo() {}
    // 
    // func _[t any](v t) {
    // 	var f = Foo2[t](v)
    // 	_ = Fooer2[t](&f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributeSelectionSchemaTest.groovy

            def foo1 = Attribute.of("foo", String)
            def foo2 = Attribute.of("foo", String)
            def attr3 = Attribute.of("baz", String)
    
            given:
    
            ImmutableAttributes[] candidates = [candidate(ImmutableMap.of(attr3, "v2", foo1, "v2"))]
            AttributeContainer requested = attribute(attr3, "v3")
            attributesSchema.getAttributeByName("foo") >> foo2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pkg/kubelet/util/sliceutils/sliceutils_test.go

    			Size:        2,
    		},
    		{
    			ID:          "3",
    			RepoTags:    []string{"foo-tag31", "foo-tag32"},
    			RepoDigests: []string{"foo-rd31", "foo-rd32"},
    			Size:        3,
    		},
    		{
    			ID:          "4",
    			RepoTags:    []string{"foo-tag41", "foo-tag42"},
    			RepoDigests: []string{"foo-rd41", "foo-rd42"},
    			Size:        3,
    		},
    	}
    }
    
    func TestByImageSizeLen(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/mfinal_test.go

    func TestFinalizerOnGlobal(t *testing.T) {
    	runtime.SetFinalizer(Foo1, func(p *Object1) {})
    	runtime.SetFinalizer(Foo2, func(p *Object2) {})
    	runtime.SetFinalizer(Foo1, nil)
    	runtime.SetFinalizer(Foo2, nil)
    }
    
    type Object1 struct {
    	Something []byte
    }
    
    type Object2 struct {
    	Something byte
    }
    
    var (
    	Foo2 = &Object2{}
    	Foo1 = &Object1{}
    )
    
    func TestDeferKeepAlive(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue39634.go

    // 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
    type foo9[A any] interface { foo9 /* ERROR "invalid recursive type" */ [A] }
    func _() { var _ = new(foo9[int]) }
    
    // crash 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/reconciler_helpers_test.go

    				simpleEndpointSlice("foo1", "10.1.2.3", discovery.AddressTypeIPv4),
    				simpleEndpointSlice("foo2", "10.3.4.5", discovery.AddressTypeIPv4),
    			},
    			toDelete: []*discovery.EndpointSlice{simpleEndpointSlice("bar", "10.2.3.4", discovery.AddressTypeIPv4)},
    		},
    		expectedSlices: &slicesByAction{
    			toCreate: []*discovery.EndpointSlice{simpleEndpointSlice("foo2", "10.3.4.5", discovery.AddressTypeIPv4)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 23:58:47 UTC 2021
    - 7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-gradient-def.pbtxt

            name: "foo1"
            type: DT_FLOAT
          }
        }
        node_def {
          name: "Exp"
          op: "Exp"
          input: "foo"
          attr {
            key: "T"
            value {
              type: DT_FLOAT
            }
          }
          experimental_debug_info {
            original_node_names: "Exp"
          }
        }
        node_def {
          name: "Neg"
          op: "Neg"
          input: "foo"
          attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  10. pkg/filewatcher/fakefilewatcher_test.go

    			t.Fatal("Removing a path that doesn't exist should fail")
    		}
    	}
    
    	// verify Close()
    	for _, file := range []string{"foo3", "bar3", "baz3"} {
    		watcher.Add(file)
    	}
    	if err := watcher.Close(); err != nil {
    		t.Fatalf("Close() failed: %v", err)
    	}
    
    	for _, file := range []string{"foo2", "bar2", "baz2"} {
    		wantEvent := fsnotify.Event{Name: file, Op: fsnotify.Write}
    		fakeWatcher.InjectEvent(file, wantEvent)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top