Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for foo31 (0.03 sec)

  1. src/internal/types/testdata/fixedbugs/issue47747.go

    	Foo(Barer[t])
    }
    type Barer[t any] interface {
    	Bar(t)
    }
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // type Foo1[t any] t
    // type Bar[t any] t
    // 
    // func (l Foo1[t]) Foo(v Barer[t]) { v.Bar(t(l)) }
    // func (b *Bar[t]) Bar(l t)        { *b = Bar[t](l) }
    // 
    // func _[t any](f Fooer1[t]) t {
    // 	var b Bar[t]
    // 	f.Foo(&b)
    // 	return t(b)
    // }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-gradient-def.pbtxt

      }
    }
    library {
      function {
        signature {
          name: "foo"
          input_arg {
            name: "foo"
            type: DT_FLOAT
          }
          output_arg {
            name: "foo1"
            type: DT_FLOAT
          }
        }
        node_def {
          name: "Exp"
          op: "Exp"
          input: "foo"
          attr {
            key: "T"
            value {
              type: DT_FLOAT
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Containers: []v1.Container{
    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			ContainerStatuses: []v1.ContainerStatus{
    				{
    					ContainerID: "://id1",
    					Name:        "foo1",
    					Image:       "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/switch_test.go

    func benchmarkSwitchString(b *testing.B, predictable bool) {
    	a := []string{
    		"foo",
    		"foo1",
    		"foo22",
    		"foo333",
    		"foo4444",
    		"foo55555",
    		"foo666666",
    		"foo7777777",
    	}
    	n := 0
    	rng := newRNG()
    	for i := 0; i < b.N; i++ {
    		rng = rng.next(predictable)
    		switch a[rng.value()&7] {
    		case "foo":
    			n += 1
    		case "foo1":
    			n += 2
    		case "foo22":
    			n += 3
    		case "foo333":
    			n += 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/envoyfilter_test.go

    						},
    					},
    				},
    			},
    			"1.19",
    			map[string]bool{
    				"1.19":         true,
    				"1.19.0":       true,
    				"1.19-dev.foo": true,
    				"1.5":          false,
    				"11.19":        false,
    				"foo1.19":      false,
    			},
    		},
    		{
    			"version prefix mismatch",
    			&networking.EnvoyFilter{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    					{
    						Patch: &networking.EnvoyFilter_Patch{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue4215.go

    }
    
    func foo2() {
    	return int(2), 2 // ERROR "too many (arguments to return|return values)\n\thave \(int, number\)\n\twant \(\)|return with value in function with no return type"
    }
    
    func foo3(v int) (a, b, c, d int) {
    	if v >= 0 {
    		return 1 // ERROR "not enough return values\n\thave \(number\)\n\twant \(int, int, int, int\)|not enough arguments to return"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 18 21:43:02 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

                int main () {
                    printf("foo%dfoo%d", sum1(1, 0), sum2(1, 1));
                    fflush(stdout);
                    return 0;
                }
    
                """),
                sourceFile("asm", "foo1/sum.s", getAsmSource("sum1")),
                sourceFile("asm", "foo2/sum.s", getAsmSource("sum2"))
            ]
        }
    
        @Override
        List<SourceFile> getHeaderFiles() {
            []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/internal/impl/PropertiesAsMapTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    class PropertiesAsMapTest {
    
        @Test
        void testPropertiesAsMap() {
            Properties props = new Properties();
            props.setProperty("foo1", "bar1");
            props.setProperty("foo2", "bar2");
            PropertiesAsMap pam = new PropertiesAsMap(props);
            assertEquals(2, pam.size());
            Set<Entry<String, String>> set = pam.entrySet();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/net/dnsname_test.go

    	// RFC 2181, section 11.
    	{"_xmpp-server._tcp.google.com", true},
    	{"foo.com", true},
    	{"1foo.com", true},
    	{"26.0.0.73.com", true},
    	{"10-0-0-1", true},
    	{"fo-o.com", true},
    	{"fo1o.com", true},
    	{"foo1.com", true},
    	{"a.b..com", false},
    	{"a.b-.com", false},
    	{"a.b.com-", false},
    	{"a.b..", false},
    	{"b.com.", true},
    }
    
    func emitDNSNameTest(ch chan<- dnsNameTest) {
    	defer close(ch)
    	var char63 = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java

            FileUtil.writeBytes(file.getAbsolutePath(), "abc".getBytes());
    
            path = "foo1/hoge.html";
            file = fileTransformer.createFile(path);
            resultFile = new File(fileTransformer.baseDir, path);
            assertEquals(resultFile, file);
            FileUtil.writeBytes(file.getAbsolutePath(), "abc".getBytes());
    
            path = "foo1/foo2/hoge.html";
            file = fileTransformer.createFile(path);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top