Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for duck (0.07 sec)

  1. test/fixedbugs/issue31412a.go

    package main
    
    type Name string
    
    type EFunc func(int) int
    
    func Register(f EFunc, names ...Name) int {
    	return f(len(names))
    }
    
    const (
    	B Name = "B"
    )
    
    func RegisterIt() {
    	n := B + "Duck"
    	d := B + "Goose"
    	f := func(x int) int { return x + 9 }
    	Register(f, n, d)
    }
    
    func main() {
    	RegisterIt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:17:26 UTC 2019
    - 531 bytes
    - Viewed (0)
  2. tensorflow/c/kernels_test.cc

      auto my_create_func = [](TF_OpKernelConstruction* ctx) {
        struct MyCustomKernel* s = new struct MyCustomKernel;
        s->created = true;
        s->compute_called = false;
    
        std::vector<string> list = {"bugs", "bunny", "duck"};
        int list_total_size = 0;
        for (const auto& s : list) {
          list_total_size += s.size();
        }
    
        TF_Status* status = TF_NewStatus();
        std::unique_ptr<char*[]> values(new char*[list.size()]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"drooling_face":                        "\U0001f924",
    	"drop_of_blood":                        "\U0001fa78",
    	"droplet":                              "\U0001f4a7",
    	"drum":                                 "\U0001f941",
    	"duck":                                 "\U0001f986",
    	"dumpling":                             "\U0001f95f",
    	"dvd":                                  "\U0001f4c0",
    	"e-mail":                               "\U0001f4e7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and even Stigand, the patriotic archbishop of Canterbury, found
    it advisable--"'
    
      `Found WHAT?' said the Duck.
    
      `Found IT,' the Mouse replied rather crossly:  `of course you
    know what "it" means.'
    
      `I know what "it" means well enough, when I find a thing,' said
    the Duck:  `it's generally a frog or a worm.  The question is,
    what did the archbishop find?'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and even Stigand, the patriotic archbishop of Canterbury, found
    it advisable--"'
    
      `Found WHAT?' said the Duck.
    
      `Found IT,' the Mouse replied rather crossly:  `of course you
    know what "it" means.'
    
      `I know what "it" means well enough, when I find a thing,' said
    the Duck:  `it's generally a frog or a worm.  The question is,
    what did the archbishop find?'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_EQ("bunny", string(static_cast<const char*>(value.get()), 5));
    }
    
    TEST_F(CApiAttributesTest, StringList) {
      std::vector<string> list = {"bugs", "bunny", "duck"};
      std::unique_ptr<const void*[]> list_ptrs;
      std::unique_ptr<size_t[]> list_lens;
      StringVectorToArrays(list, &list_ptrs, &list_lens);
      int list_total_size = 0;
      for (const auto& s : list) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

            def appProject = xcodeProject("app/app.xcodeproj").projectFile
            appProject.indexTarget.getBuildSettings().HEADER_SEARCH_PATHS == toSpaceSeparatedList(file("app/src/main/headers"), file("deck/src/main/public"), file("card/src/main/public"))
            def deckProject = xcodeProject("deck/deck.xcodeproj").projectFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAppWithLibrariesWithApiDependencies.groovy

    #include <iostream>
    #include "deck.h"
    
    int main() {
        Deck deck;
        deck.shuffle();
        Card& card = deck.draw();
        std::cout << card.getName() << std::endl;
        return 0;
    }
    """)
        }
    
        final CppSourceFileElement deck = new CppSourceFileElement() {
            final SourceFileElement header = ofFile(new SourceFile("public", "deck.h", """
    #include "card.h"
    #ifdef _WIN32
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

                    }
                }
                project(':deck') {
                    dependencies {
                        api project(':card')
                        implementation project(':shuffle')
                    }
                }
            """
            app.deck.writeToProject(file('deck'))
            app.card.writeToProject(file('card'))
            app.shuffle.writeToProject(file('shuffle'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

                    }
                }
                project(':deck') {
                    dependencies {
                        api project(':card')
                        implementation project(':shuffle')
                    }
                }
    """
            app.deck.writeToProject(file('deck'))
            app.card.writeToProject(file('card'))
            app.shuffle.writeToProject(file('shuffle'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
Back to top