Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for duck (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/pprof/proto.go

    // and returns the location ID encoded in the profile protobuf.
    // It emits to b.pb, so there must be no message encoding in progress.
    // It resets the deck.
    func (b *profileBuilder) emitLocation() uint64 {
    	if len(b.deck.pcs) == 0 {
    		return 0
    	}
    	defer b.deck.reset()
    
    	addr := b.deck.pcs[0]
    	firstFrame := b.deck.frames[0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            app.card.writeToProject(file("card"))
            app.shuffle.writeToProject(file("shuffle"))
            app.main.writeToProject(file("app"))
    
            expect:
            succeeds ":app:assemble"
    
            result.assertTasksExecuted([':card', ':deck', ':shuffle'].collect { tasks(it).debug.allToLink }, tasks(':app').debug.allToInstall, ":app:assemble")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. plugin/pkg/admission/namespace/exists/admission_test.go

    	namespace := "test"
    	mockClient := newMockClientForTest([]string{})
    	mockClient.AddReactor("get", "namespaces", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, fmt.Errorf("nope, out of luck")
    	})
    	handler, informerFactory, err := newHandlerForTest(mockClient)
    	if err != nil {
    		t.Errorf("unexpected error initializing handler: %v", err)
    	}
    	informerFactory.Start(wait.NeverStop)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top