Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,846 for construction (0.18 sec)

  1. ci/README.md

    # TensorFlow continuous integration
    
    > **Warning** This folder is still under construction. It is part of an ongoing
    > effort to improve the structure of CI and build related files within the
    > TensorFlow repo. This warning will be removed when the contents of this
    > directory are stable and appropriate documentation around its usage is in
    > place.
    
    Maintainer: TensorFlow DevInfra
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
  2. ci/devinfra/README.md

    # DevInfra CI Directory
    
    > **Warning** This folder is still under construction. It is part of an ongoing
    > effort to improve the structure of CI and build related files within the
    > TensorFlow repo. This warning will be removed when the contents of this
    > directory are stable and appropriate documentation around its usage is in
    > place.
    
    Maintainer: TensorFlow DevInfra
    
    Issue Reporting: File an issue against this repo and tag
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 732 bytes
    - Viewed (0)
  3. test/fixedbugs/issue15528.go

    func (x *RWS) String() string                                     { return "rws" }
    
    func makeRWS() io.ReadWriteSeeker { return &RWS{} }
    func makeStringer() fmt.Stringer  { return &RWS{} }
    
    // Test correct construction of static empty interface values
    var efaces = [...]struct {
    	x interface{}
    	s string
    }{
    	{nil, "<nil> <nil>"},
    	{1, "int 1"},
    	{int(1), "int 1"},
    	{Int(int(2)), "main.Int Int=2"},
    	{int(Int(3)), "int 3"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 12 14:31:26 UTC 2016
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/DynamicVersionsListReadOnlyCacheDependencyResolutionTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.rocache
    
    // A variant of the parent test where during the read-only cache construction
    // we make sure that version lists are cached
    class DynamicVersionsListReadOnlyCacheDependencyResolutionTest extends DynamicVersionsReadOnlyCacheDependencyResolutionTest {
        @Override
        boolean isResolveDynamic() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 982 bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_kernel_creator.cc

      Device* dev = flr->device();
      Status s;
      auto props = std::make_shared<NodeProperties>(
          &fbody->record->fdef().signature(), node_def, fbody->arg_types,
          fbody->ret_types);
      OpKernelConstruction construction(DeviceType(dev->device_type()), dev,
                                        dev->GetAllocator(AllocatorAttributes()),
                                        flr, dev->resource_manager(), props,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 22:24:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. releasenotes/notes/merge-svc.yaml

    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 07:49:37 UTC 2024
    - 912 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/doc.go

    // Package sha3 implements the SHA-3 fixed-output-length hash functions and
    // the SHAKE variable-output-length hash functions defined by FIPS-202.
    //
    // Both types of hash function use the "sponge" construction and the Keccak
    // permutation. For a detailed specification see http://keccak.noekeon.org/
    //
    // # Guidance
    //
    // If you aren't sure what function you need, use SHAKE256 with at least 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue24693.dir/b.go

    // order. So again, it ends up calling the wrong method.
    //
    // Also, this function is marked noinline because it's critical to the
    // test that the interface method call happen in this compilation
    // unit, and the itab construction happens in c.go.
    //
    //go:noinline
    func F2(i interface {
    	m()
    	a.I // embeds m() from package a
    }) {
    	i.m()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstanceGenerator.java

    @ServiceScope(Scope.Global.class)
    public interface InstanceGenerator extends Instantiator {
        /**
         * Create a new instance of T with the given display name, using {@code parameters} as the construction parameters.
         *
         * @throws ObjectInstantiationException On failure to create the new instance.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/state/DefaultPreviousExecutionCacheAccessTest.groovy

    import spock.lang.Specification
    
    class DefaultPreviousExecutionCacheAccessTest extends Specification {
        final BuildScopedCacheBuilderFactory cacheBuilderFactory = Mock()
    
        def "opens backing cache on construction"() {
            CacheBuilder cacheBuilder = Mock()
            PersistentCache backingCache = Mock()
    
            when:
            new DefaultExecutionHistoryCacheAccess(cacheBuilderFactory)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top