Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 205 for composite_ (0.2 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

            }
        }
    
        def expectTestPasses() {
            suiteDescriptor.id >> "suite"
            suiteDescriptor.parent >> null
            suiteDescriptor.composite >> true
    
            testDescriptor.id >> "test"
            testDescriptor.parent >> suiteDescriptor
            testDescriptor.composite >> false
            testDescriptor.className >> "class"
            testDescriptor.classDisplayName >> "class"
            testDescriptor.name >> "method"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

            @Override
            public CompositeIdGenerator.CompositeId read(Decoder decoder) throws Exception {
                return new CompositeIdGenerator.CompositeId(decoder.readLong(), decoder.readLong());
            }
    
            @Override
            public void write(Encoder encoder, CompositeIdGenerator.CompositeId value) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ImmutableActionSetTest.groovy

            0 * _
        }
    
        def "can add no-op action to composite set"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
    
            expect:
            def set = ImmutableActionSet.of(action1, action2)
            set.add(Actions.doNothing()).is(set)
        }
    
        def "can add empty set to composite set"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                    options.annotationProcessorPath = files()
                }
            """
            file("my-composite-app/settings.gradle") << "rootProject.name = 'my-composite-app'"
    
            settingsFile << """
            rootProject.name='root'
            includeBuild 'my-composite-app'
            """
            mavenHttpRepo.module('org.foo', 'app-dep').publish().allowAll()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    import org.gradle.integtests.fixtures.resolve.ResolveTestFixture
    import spock.lang.Issue
    
    /**
     * Tests for resolving dependency graph with substitution within a composite build.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

    namespace {
    
    using ::stablehlo::quantization::CalibrationOptions;
    using ::stablehlo::quantization::Method;
    
    constexpr StringRef kQuantTraitAttrName = "_tfl_quant_trait";
    
    // Whether the op is a call op to lifted composite function.
    bool IsCallToQuantizableLiftedFunction(Operation *op) {
      if (!op) return false;
      if (auto xla_call_module_op = dyn_cast_or_null<TF::XlaCallModuleOp>(op);
          xla_call_module_op != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/complit.go

    		return false
    	}
    	if !isSimpleName(n.X) {
    		// not a special composite literal assignment
    		return false
    	}
    	x := n.X.(*ir.Name)
    	if !types.Identical(n.X.Type(), n.Y.Type()) {
    		// not a special composite literal assignment
    		return false
    	}
    	if x.Addrtaken() {
    		// If x is address-taken, the RHS may (implicitly) uses LHS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            checkDependenciesFails()
    
            then:
            failure.assertHasCause("Module version 'org.test:b1:2.0' is not unique in composite: can be provided by [project :buildB:b1, project :buildC:b1].")
        }
    
        def "resolve transitive project dependency that is ambiguous in the composite"() {
            given:
            transitiveDependencyIsAmbiguous("project(':b1')")
    
            when:
            checkDependencies()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

        }
    
        def "ignores the lock entry that matches a composite"() {
            given:
            lockfileFixture.createLockfile('lockedConf', ['org:composite:1.1'], false)
    
            file("composite/settings.gradle") << """
    rootProject.name = 'composite'
    """
            file("composite/build.gradle") << """
    apply plugin: 'java'
    group = 'org'
    version = '1.1'
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/BUILD

            "@llvm-project//mlir:SCFDialect",
            "@llvm-project//mlir:ShapeDialect",
            "@llvm-project//mlir:Support",
            "@pybind11",
        ],
    )
    
    py_strict_library(
        name = "composite",
        srcs = ["python/composite.py"],
        srcs_version = "PY3",
    )
    
    py_strict_library(
        name = "tfr_gen",
        srcs = ["python/tfr_gen.py"],
        srcs_version = "PY3",
        deps = [
            ":tfr_wrapper",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top