Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 175 for foo6 (0.07 sec)

  1. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationFromMemberScope/subsitutionOverride.kt

    abstract class X<T> {
        fun <S> foo1(t: T): T = t
        fun <Q> foo2(t: T) {}
        fun <U> foo3() {}
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 129 bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway_test.go

    	gwHTTPWildcard := makeConfig("foo3", "not-default", "*", "name3", "http", 8, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    	gwTCPWildcard := makeConfig("foo4", "not-default-2", "*", "name4", "tcp", 8, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateCppBaseNamesTestApp.groovy

             sourceFile("cpp/foo2", "foo.cpp", """
                #include <iostream>
                #include "foo.h"
                using namespace std;
    
                void foo2() {
                    cout << "foo2";
                }
            """)]
        }
    
        @Override
        List<SourceFile> getHeaderFiles() {
            [sourceFile("headers", "foo.h", """
               void foo1();
               void foo2();
               """)
             ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateCBaseNamesTestApp.groovy

                #include <stdio.h>
                #include "foo.h"
                int main () {
                   foo1();
                   foo2();
                   return 0;
                }
            """),
    
            sourceFile("c/foo1", "foo.c", """
                #include <stdio.h>
                #include "foo.h"
    
                void foo1() {
                    printf("foo1");
                }
            """),
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. test/fixedbugs/bug113.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type I interface{}
    
    func foo1(i int) int     { return i }
    func foo2(i int32) int32 { return i }
    func main() {
    	var i I
    	i = 1
    	var v1 = i.(int)
    	if foo1(v1) != 1 {
    		panic(1)
    	}
    	var v2 = int32(i.(int))
    	if foo2(v2) != 1 {
    		panic(2)
    	}
    	
    	shouldPanic(p1)
    }
    
    func p1() {
    	var i I
    	i = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 693 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			watchTests: []*testWatchStruct{
    				{basePod("t4-foo1"), true, watch.Added},
    				{basePod("t4-foo2"), false, ""},
    				{basePodUpdated("t4-foo1"), true, watch.Modified},
    				{basePodUpdated("t4-foo2"), false, ""},
    			},
    		},
    		{
    			name:          "cluster-wide watch, request with name, field selector with metadata.name and spec.nodeName",
    			requestedName: "t5-foo1",
    			fieldSelector: fields.SelectorFromSet(fields.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue29563/weak.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue29563
    
    //int foo1();
    //int foo2();
    import "C"
    
    func Bar() int {
    	return int(C.foo1()) + int(C.foo2())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 277 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertEquals("abc 123 xyz", fessXpathTransformer.removeCommentTag("abc<!-- foo1 -->123<!-- foo2 -->xyz"));
            assertEquals("abc ", fessXpathTransformer.removeCommentTag("abc<!---->"));
            assertEquals("abc -->", fessXpathTransformer.removeCommentTag("abc<!-- foo-->-->"));
            assertEquals("abc<!-- foo", fessXpathTransformer.removeCommentTag("abc<!-- foo"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributeSelectionUtilsTest.groovy

            def foo1 = Attribute.of("foo", String)
            def foo2 = Attribute.of("foo", String)
            def attr3 = Attribute.of("baz", String)
    
            given:
            candidate {
                attribute(attr3, "v2")
                attribute(foo1, "v2")
            }
            requested {
                attribute(attr3, "v3")
            }
            schema.getAttribute("foo") >> foo2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateWindowsResourcesBaseNamesTestApp.groovy

        return std::string(wide.begin(), wide.end());
    }
    
    void hello() {
        std::string foo1 = LoadStringFromResource(IDS_FOO1);
        std::string foo2 = LoadStringFromResource(IDS_FOO2);
        std::cout << foo1;
        std::cout << foo2;
    }
    """),
            sourceFile("rc/dir1", "resources.rc", """
    #include "hello.h"
    
    STRINGTABLE
    {
        IDS_FOO1, "foo1"
    }
    """),
            sourceFile("rc/dir2", "resources.rc", """
    #include "hello.h"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top