Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 198 for composite_ (0.32 sec)

  1. src/go/printer/testdata/comments.golden

    }
    
    var _ = []T{
    	// lone comments
    	// in composite lit
    }
    
    var _ = [][]T{
    	{
    		// lone comments
    		// in composite lit
    	},
    }
    
    // TODO: gofmt doesn't add these tabs; make it so that these golden
    // tests run the printer in a way that it's exactly like gofmt.
    
    var _ = []T{	// lone comment
    }
    
    var _ = []T{	// lone comments
    	// in composite lit
    }
    
    func _()	{}
    
    func _()	{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  2. src/runtime/race.go

    	kind := t.Kind_ & abi.KindMask
    	if kind == abi.Array || kind == abi.Struct {
    		// for composite objects we have to read every address
    		// because a write might happen to any subobject.
    		racereadrangepc(addr, t.Size_, callerpc, pc)
    	} else {
    		// for non-composite objects we can read just the start
    		// address, as any write must write the first byte.
    		racereadpc(addr, callerpc, pc)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

                    if (parentId.isPresent()) {
                        Object candidateId = parentId.get().getId();
                        if (candidateId instanceof CompositeIdGenerator.CompositeId) {
                            return createNestedTestSuite(node, displayName, (CompositeIdGenerator.CompositeId) candidateId);
                        }
                    }
                }
                if (node.getType().isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/go/printer/testdata/comments.input

    }
    
    var _ = []T{
    // lone comments
    // in composite lit
    }
    
    var _ = [][]T{
    	{
    		// lone comments
    		// in composite lit
    	},
    }
    
    // TODO: gofmt doesn't add these tabs; make it so that these golden
    // tests run the printer in a way that it's exactly like gofmt.
    
    var _ = []T{// lone comment
    }
    
    var _ = []T{// lone comments
    // in composite lit
    }
    
    func _() {}
    
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      }
      return false;
    }
    
    /* Resources may be merged with an execute op when they are on its device or a
     * `COMPOSITE`. Note that a `COMPOSITE` represents a set of devices, they
     * are typically associated with packed variables. Presently, we assume this
     * set spans all the devices. So, a variable on a `COMPOSITE` will have a local
     * instance on the execute op's device.
     */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

        }
      }
    }
    
    bool IsCompositeDevice(mlir::Attribute attr) {
      const auto str_attr = attr.dyn_cast_or_null<mlir::StringAttr>();
      return str_attr &&
             (str_attr.getValue().find("COMPOSITE") != llvm::StringRef::npos);
    }
    }  // namespace
    
    // Rewrites unpartitioned resource reads and writes to partitioned resource
    // reads and writes. The TPU computation from the frontend is generated in such
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

                }
            """
    
            plugin.file('src/main/resources/META-INF/gradle-plugins/com.company.composite.properties') << """
                implementation-class=org.gradle.test.CompositePlugin
            """
    
            plugin.build()
    
            buildFile << """
                plugins {
                    id "com.company.composite"
                }
            """
    
            when:
            def result = runner('helloWorld1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            def exception = thrown(Exception)
            exception.cause.message.containsIgnoreCase("project 'sub' not found in project ':other-build'.")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
            file('lib/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    [cols="20%,80%",options="header"]
    |======================
    |Test type                               |Tooling support
    |<<manual-tests,Manual tests>>           |<<composite_builds.adoc#composite_builds,Gradle composite builds>>
    |<<unit-tests,Unit tests>>               |Any JVM-based test framework
    |<<integration-tests,Integration tests>> |Any JVM-based test framework
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

        }
    
        def 'constructs empty tree when composite tree created with empty list'() {
            def tree = factory.treeOf([])
    
            expect:
            emptyTree(tree)
        }
    
        def 'returns source file tree when composite tree created with single entry'() {
            def source = Stub(FileTreeInternal)
            def tree = factory.treeOf([source])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top