Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,065 for expectGet (0.18 sec)

  1. security/pkg/nodeagent/sds/sdsservice_test.go

    		s.Verify(s.Connect().RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{testResourceName}}), expectCert)
    	})
    	t.Run("unsubscribe", func(t *testing.T) {
    		s := setupSDS(t)
    		c := s.Connect()
    		res := c.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{testResourceName}})
    		s.Verify(res, expectCert)
    		c.Request(t, &discovery.DiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   // Only asserts in dbg.
    //   EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
    //
    // #ifdef NDEBUG
    //   // opt-mode has sideeffect visible.
    //   EXPECT_EQ(12, sideeffect);
    // #else
    //   // dbg-mode no visible sideeffect.
    //   EXPECT_EQ(0, sideeffect);
    // #endif
    // }
    //
    // This will assert that DieInDebugReturn12InOpt() crashes in debug
    // mode, usually due to a DCHECK or LOG(DFATAL), but returns the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/shape_inference_test.cc

                               &shape_info));
      auto iter = shape_info.find("sink");
      EXPECT_NE(iter, shape_info.end());
      EXPECT_EQ(iter->second.size(), 1);
      EXPECT_EQ(iter->second.at(0).handle_type, DT_FLOAT);
      TensorShape resource_shape;
      EXPECT_TRUE(iter->second.at(0).handle_shape.AsTensorShape(&resource_shape));
      EXPECT_EQ(resource_shape, TensorShape({2, 3}));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/lex/input.go

    	tok := in.Stack.Next()
    	if tok != scanner.Int {
    		in.expectText("expected line number after #line")
    	}
    	line, err := strconv.Atoi(in.Stack.Text())
    	if err != nil {
    		in.Error("error parsing #line (cannot happen):", err)
    	}
    	tok = in.Stack.Next()
    	if tok != scanner.String {
    		in.expectText("expected file name in #line")
    	}
    	file, err := strconv.Unquote(in.Stack.Text())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/fingerprinting_chunked_test.cc

                  ::testing::Contains(fingerprint_pb.graph_def_program_hash()));
      EXPECT_EQ(fingerprint_pb.signature_def_hash(), 1043582354059066488U);
      EXPECT_THAT(absl::flat_hash_set<uint64_t>(
                      {2766043449526180728U, 11894619660760763927U}),
                  ::testing::Contains(fingerprint_pb.saved_object_graph_hash()));
      EXPECT_EQ(fingerprint_pb.checkpoint_hash(), 0);
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util_test.cc

                              GetNodesRelatedToRefVarsSorted(root, &flib_def));
    
      std::vector<string> expected({
          "RefFloat",
          "add_ref",
          "constant_ref",
          "constant_ref_pco",
          "negate_ref",
          "read_ref_var",
          "variable",
      });
    
      EXPECT_EQ(names, expected);
    }
    
    Status MakeLoop(Scope s, Output init_value, absl::string_view loop_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    //   EXPECT_NE(5, Foo());
    //   EXPECT_EQ(NULL, a_pointer);
    //   ASSERT_LT(i, array_size);
    //   ASSERT_GT(records.size(), 0) << "There is no record left.";
    
    #define EXPECT_EQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal:: \
                          EqHelper<GTEST_IS_NULL_LITERAL_(expected)>::Compare, \
                          expected, actual)
    #define EXPECT_NE(expected, actual) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_test.cc

      SourceCode code;
      TestRenderer(code).Render();
    
      string expected = R"(// File level comment.
    #include "header.h"
    
    void TestFunction() {
       int i = 1;
    
       while (i == 1) {
          // Do nothing, really....
    #if 0
          call();
    #endif
       }
    }  // comment ending TestFunction
    )";
    
      code.SetSpacesPerIndent(3);
      EXPECT_EQ(expected, code.Render());
    }
    
    }  // namespace
    }  // namespace cpp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    //   EXPECT_NE(5, Foo());
    //   EXPECT_EQ(NULL, a_pointer);
    //   ASSERT_LT(i, array_size);
    //   ASSERT_GT(records.size(), 0) << "There is no record left.";
    
    #define EXPECT_EQ(expected, actual) \
      EXPECT_PRED_FORMAT2(::testing::internal:: \
                          EqHelper<GTEST_IS_NULL_LITERAL_(expected)>::Compare, \
                          expected, actual)
    #define EXPECT_NE(expected, actual) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_pod_control_test.go

    		claimStates []string
    		expected    bool
    		skipPodUID  bool
    	}{
    		{
    			name:        "all missing",
    			claimStates: []string{missing, missing},
    			expected:    false,
    		},
    		{
    			name:        "no claims",
    			claimStates: []string{},
    			expected:    false,
    		},
    		{
    			name:        "exists",
    			claimStates: []string{missing, exists},
    			expected:    false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
Back to top