Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for verified$ (0.22 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // current test successful, as a test is only successful when it has
    // no failure.
    //
    // EXPECT_* verifies that a certain condition is satisfied.  If not,
    // it behaves like ADD_FAILURE.  In particular:
    //
    //   EXPECT_TRUE  verifies that a Boolean condition is true.
    //   EXPECT_FALSE verifies that a Boolean condition is false.
    //
    // FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // current test successful, as a test is only successful when it has
    // no failure.
    //
    // EXPECT_* verifies that a certain condition is satisfied.  If not,
    // it behaves like ADD_FAILURE.  In particular:
    //
    //   EXPECT_TRUE  verifies that a Boolean condition is true.
    //   EXPECT_FALSE verifies that a Boolean condition is false.
    //
    // FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            this.protocols = Collections.unmodifiableList(protocolsCopy)
          }
    
        /**
         * Sets the verifier used to confirm that response certificates apply to requested hostnames for
         * HTTPS connections.
         *
         * If unset, a default hostname verifier will be used.
         */
        fun hostnameVerifier(hostnameVerifier: HostnameVerifier) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $mul_out)]>;
    
    // Returns True if all users of this operation are in TF/TFL and don't need
    // shape exact matching. This prevents from removing cast on return values which
    // can break the verifier on function type mismatch.
    def AllUsersInTF : Constraint<CPred<[{
      llvm::all_of($0.getUsers(), [&](Operation *user) {
        auto name = user->getName().getDialectNamespace();
        return name == "tf" || name == "tfl";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    			Ports:     []v1.EndpointPort{{Port: 8080, Protocol: "TCP"}},
    		}},
    	})
    	endpointsHandler.ValidateRequest(t, "/api/v1/namespaces/"+ns+"/endpoints/foo", "PUT", &data)
    }
    
    // TestPodUpdatesBatching verifies that endpoint updates caused by pod updates are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/BUILD

        tbl_outs = [
            (
                ["--gen-operator-converters"],
                "operator_converters.inc",
            ),
            (
                ["--gen-runtime-verifiers"],
                "runtime_verifiers.inc",
            ),
        ],
        tblgen = ":converter-gen",
        td_file = "ir/tfl_ops.td",
        test = 1,
        deps = [
            ":tensorflow_lite_ops_td_files",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		y := makeUnion(test.y)
    		if got := Identical(x, y); got != test.want {
    			t.Errorf("Identical(%v, %v) = %t", test.x, test.y, got)
    		}
    	}
    }
    
    func TestIssue61737(t *testing.T) {
    	// This test verifies that it is possible to construct invalid interfaces
    	// containing duplicate methods using the go/types API.
    	//
    	// It must be possible for importers to construct such invalid interfaces.
    	// Previously, this panicked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		y := makeUnion(test.y)
    		if got := Identical(x, y); got != test.want {
    			t.Errorf("Identical(%v, %v) = %t", test.x, test.y, got)
    		}
    	}
    }
    
    func TestIssue61737(t *testing.T) {
    	// This test verifies that it is possible to construct invalid interfaces
    	// containing duplicate methods using the go/types API.
    	//
    	// It must be possible for importers to construct such invalid interfaces.
    	// Previously, this panicked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    	w.Header().Set("Last-Modified", "sometime")
    	fmt.Fprintf(w, "User-agent: go\nDisallow: /something/")
    })
    
    // pedanticReadAll works like io.ReadAll but additionally
    // verifies that r obeys the documented io.Reader contract.
    func pedanticReadAll(r io.Reader) (b []byte, err error) {
    	var bufa [64]byte
    	buf := bufa[:]
    	for {
    		n, err := r.Read(buf)
    		if n == 0 && err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_test.cc

      job_def2->mutable_tasks()->insert(
          {0, tensorflow::strings::StrCat(
                  "localhost:", tensorflow::testing::PickUnusedPortOrDie())});
      return server_def;
    }
    
    // This test verifies the following:
    // 1. Start the GRPC server for worker 1 using single host server def A with
    //    only worker 1.
    // 2. Create a context B using A.
    // 3. Create the variable in B.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top