Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for testCmp (0.19 sec)

  1. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.iop.injected

              name: http
            resources: {}
          - image: docker.io/istio/proxy_debug:unittest
            name: istio-proxy
            resources: {}
          initContainers:
          - image: docker.io/istio/proxy_init:unittest-testiop
            name: istio-init
            resources: {}
    status: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/tests/tensor_test.cc

      return TaggedValue::Capsule(static_cast<void*>(ctx_raw), [](void* p) {
        tensorflow::internal::AbstractContextDeleter()(
            static_cast<AbstractContext*>(p));
      });
    }
    }  // namespace
    
    TEST_P(UnifiedCAPI, HoldTensors) {
      // Use the parametrized test parameters to make a context.
      AbstractContextPtr ctx;
      {
        AbstractContext* ctx_raw = nullptr;
        Status s =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradients_test.cc

      }
    };
    
    Status RegisterGradients(GradientRegistry* registry) {
      TF_RETURN_IF_ERROR(RegisterNotDifferentiable(registry, "CheckNumerics"));
      return absl::OkStatus();
    }
    
    TEST_P(CppGradients, TestSetAttrString) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
      AbstractContextPtr ctx;
      {
        AbstractContext* ctx_raw = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

            def project = rootXcodeProject.projectFile
            project.targets.size() == 2
            project.targets.every { it.productName == 'TestApp' }
            project.targets[0].name == 'TestApp'
            project.targets[0].productReference.path == exe("output/install/main/debug/lib/TestApp").absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/gradients/nn_grad_test.cc

      GradientRegistry registry_;
      Status status_;
    
     public:
      bool UseMlir() const { return strcmp(std::get<0>(GetParam()), "mlir") == 0; }
      bool UseFunction() const { return std::get<2>(GetParam()); }
    };
    
    TEST_P(CppGradients, TestReluGrad) {
      status_ = registry_.Register("Relu", ReluRegisterer);
      ASSERT_EQ(errors::OK, status_.code()) << status_.message();
    
      auto ReluGradModel = BuildGradModel(ReluModel, registry_);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CCompilerDetectingTestApp.groovy

    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    import org.gradle.nativeplatform.fixtures.AvailableToolChains.InstalledToolChain
    
    class CCompilerDetectingTestApp extends TestApp {
        String expectedOutput(InstalledToolChain toolChain) {
            "C ${toolChain.typeDisplayName}"
        }
    
        @Override
        SourceFile getLibraryHeader() {
            sourceFile("headers", "c-detector.h", """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppCompilerDetectingTestApp.groovy

    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    import org.gradle.nativeplatform.fixtures.AvailableToolChains.InstalledToolChain
    
    class CppCompilerDetectingTestApp extends TestApp {
        String expectedOutput(InstalledToolChain toolChain) {
            "C++ ${toolChain.typeDisplayName}"
        }
    
        @Override
        SourceFile getLibraryHeader() {
            sourceFile("headers", "cpp-detector.h", """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/PlatformDetectingTestApp.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    
    class PlatformDetectingTestApp extends TestApp {
        @Override
        SourceFile getMainSource() {
            sourceFile("cpp", "main.cpp", """
    #include <iostream>
    using namespace std;
    #include "hello.h"
    
    int main () {
        ${outputPlatform()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/HelloWorldApp.java

    import org.gradle.internal.InternalTransformer;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.Collections;
    import java.util.List;
    
    public abstract class HelloWorldApp extends TestApp {
        public static final String HELLO_WORLD = "Hello, World!";
        public static final String HELLO_WORLD_FRENCH = "Bonjour, Monde!";
    
        public String getEnglishOutput() {
            return HELLO_WORLD + "\n12";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            abusedCoordinates.pom.file.replace('<groupId>org.spring</groupId>', '<groupId>org.spring/../../../../../</groupId>')
            // Our test dependency that now has a crafty dependency itself
            def testDep = mavenHttpRepo.module('org.test', 'test').dependsOn(pwnedDep, type: '/../../../../.ssh/pwned.txt').publish()
    
            def fakeDep = temporaryFolder.testDirectory.file('fake-repo/pwned.txt')
            fakeDep << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top