Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,173 for noOutputs (0.25 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            def a = java "@Bean class A {}"
            java "@Bean class B {}"
            java "class Unrelated {}"
    
            outputs.snapshot { run "compileJava" }
    
            when:
            a.delete()
            run "compileJava"
    
            then:
            outputs.deletedClasses("A", "AHelper")
            outputs.recompiledFiles("ServiceRegistry", "ServiceRegistryResource.txt")
            serviceRegistryReferences("BHelper")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            then:
            outputs.stdOut.readLines() == ['message']
            outputs.stdErr == ''
        }
    
        def rendersErrorLogEventsToStdErr() {
            when:
            renderer.attachSystemOutAndErr()
            renderer.onOutput(event('message', LogLevel.ERROR))
    
            then:
            outputs.stdOut == ''
            outputs.stdErr.readLines() == ['message']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            run "compileJava"
            a.text = "@Helper class A { public void foo() {} }"
            outputs.snapshot { run "compileJava" }
    
            when:
            b.text = " class B { }"
            run "compileJava"
    
            then:
            outputs.deletedFiles("BHelper", "BHelperResource")
            outputs.recompiledFiles("B")
        }
    
        def "generated files are recompiled when annotated file is affected by a change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/gradients/math_grad_test.cc

                    absl::Span<AbstractTensorHandle*> outputs) {
      return ops::AddV2(ctx, inputs[0], inputs[1], &outputs[0], "Add");
    }
    
    Status ExpModel(AbstractContext* ctx,
                    absl::Span<AbstractTensorHandle* const> inputs,
                    absl::Span<AbstractTensorHandle*> outputs) {
      return ops::Exp(ctx, inputs[0], &outputs[0], "Exp");
    }
    
    Status SqrtModel(AbstractContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

            then:
            outputs.stdOut == ''
            outputs.stdErr == ''
    
            when:
            loggingManager.levelInternal = LogLevel.WARN
            loggingManager.start()
            logger.warn("warning")
            logger.error("error")
    
            then:
            outputs.stdOut == TextUtil.toPlatformLineSeparators('warning\n')
            outputs.stdErr == TextUtil.toPlatformLineSeparators('error\n')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. tensorflow/cc/tools/freeze_saved_model_test.cc

      std::unordered_set<string> inputs;
      std::unordered_set<string> outputs;
      TF_ASSERT_OK(FreezeSavedModel(saved_model_bundle, &frozen_graph_def, &inputs,
                                    &outputs));
      EXPECT_EQ(expected_inputs, inputs);
      EXPECT_EQ(expected_outputs, outputs);
    }
    
    TEST_F(FreezeTest, InputsAndOutputsMultipleSignatureDefs) {
      // Test that inputs and outputs get correctly merged and populated when
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  7. tensorflow/c/eager/unified_api_testutil.cc

                    absl::Span<AbstractTensorHandle*> outputs, bool use_function) {
      if (use_function) {
        const char* fn_name = "test_fn";
        core::RefCountPtr<AbstractFunction> scoped_func;
        // Returning null tensors from a tf.function is not supported, so we keep
        // track of indices in the model's outputs are nullptr in this set.
        // The FunctionDef only outputs the non-null tensors. We later pad the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/cc/client/client_session_test.cc

      std::vector<Tensor> outputs;
    
      TF_EXPECT_OK(session.Run({{a, {1, 1}}}, {c}, &outputs));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({3, 3}, {2}));
    
      auto d = Add(root, c, {39, 39});
      outputs.clear();
      TF_EXPECT_OK(session.Run({{a, {-10, 1}}}, {d}, &outputs));
      test::ExpectTensorEqual<int>(outputs[0], test::AsTensor<int>({31, 42}, {2}));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

             """
    
            outputs.snapshot { succeeds("compileDebugSwift") }
            file("src/main/swift/multiply.swift").delete()
    
            expect:
            succeeds("compileDebugSwift")
            outputs.recompiledClasses()
            outputs.deletedClasses("multiply")
        }
    
        def 'changing compiler arguments rebuilds everything'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

            componentUnderTest.writeToProject()
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
            componentUnderTest.changeInnerName()
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses 'WithInner2', 'WithInner2$Inner2', 'Consumer'
            outputs.deletedClasses('WithInner2$Inner')
        }
    
        class LibWithAnonymousClasses {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top