Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 202 for Grappler (0.23 sec)

  1. tensorflow/compiler/jit/xla_device.h

      // on device, fully padded. On error, the contents of `xla::Shape*`
      // are undefined.
      typedef std::function<Status(const Tensor&, xla::Shape*)> PaddedShapeFn;
    
      // Wrapper class to store metadata about the XlaDevice, where it can be
      // retrieved e.g., when lazily creating the XlaCompilationCache device.
      class Metadata {
       public:
        Metadata(int device_ordinal, se::Platform* platform,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    `gradle.wrapperPassword=(mypassword)`:: Specify password for downloading a Gradle distribution using the Gradle wrapper.
    `gradle.user.home=(path to directory)`:: Specify the `GRADLE_USER_HOME` directory.
    `https.protocols`:: Specify the supported TLS versions in a comma-separated format. e.g., `TLSv1.2,TLSv1.3`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

            then:
            targetDir.file(settingsFile).exists()
            !targetDir.file(buildFile).exists()
    
            def allFiles = getAllFiles(targetDir)
                .findAll { it.name !in ["gradle-wrapper.jar", "gradlew", "gradlew.bat"] }
    
            allFiles.each {
                assert !it.text.containsIgnoreCase("generated by")
            }
    
            when:
            succeeds "build"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    }
    
    // Returns nil if the PallocData's L2 is missing.
    func (p *PageAlloc) PallocData(i ChunkIdx) *PallocData {
    	ci := chunkIdx(i)
    	return (*PallocData)((*pageAlloc)(p).tryChunkOf(ci))
    }
    
    // AddrRange is a wrapper around addrRange for testing.
    type AddrRange struct {
    	addrRange
    }
    
    // MakeAddrRange creates a new address range.
    func MakeAddrRange(base, limit uintptr) AddrRange {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

              .isTrue();
        }
      }
    
      public void testCompare() {
        // This is the only ordering for primitives that does not have a
        // corresponding Comparable wrapper in java.lang.
        for (int i = 0; i < VALUES.length; i++) {
          for (int j = 0; j < VALUES.length; j++) {
            byte x = VALUES[i];
            byte y = VALUES[j];
            // note: spec requires only that the sign is the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

    import org.gradle.testkit.runner.internal.GradleProvider
    import org.gradle.testkit.runner.internal.feature.TestKitFeature
    import org.gradle.util.GradleVersion
    import org.gradle.util.SetSystemProperties
    import org.gradle.wrapper.GradleUserHomeLookup
    import org.junit.AssumptionViolatedException
    import org.junit.Rule
    import org.spockframework.runtime.extension.IMethodInvocation
    import spock.lang.Retry
    
    import javax.annotation.Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/runtime/error.go

    		print(s[:i])
    		print("\t")
    		s = s[i:]
    	}
    	print(s)
    }
    
    // panicwrap generates a panic for a call to a wrapped value method
    // with a nil pointer receiver.
    //
    // It is called from the generated wrapper code.
    func panicwrap() {
    	pc := getcallerpc()
    	name := funcNameForPrint(funcname(findfunc(pc)))
    	// name is something like "main.(*T).F".
    	// We want to extract pkg ("main"), typ ("T"), and meth ("F").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cmd/peer-rest-client.go

    				return nil
    			}
    			gridConn.Store(gc)
    			return gc
    		},
    	}
    }
    
    // Wrapper to restClient.Call to handle network errors, in case of network error the connection is marked disconnected
    // permanently. The only way to restore the connection is at the xl-sets layer by xlsets.monitorAndConnectEndpoints()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

            }),
            /**
             * Renames the Closure's original `doCall` method and adds a wrapper method that invokes the original one.
             */
            RENAME_ORIGINAL_DO_CALL("doCall", null, false, (clazz, methodData) -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <typename T>
    struct RemoveReference { typedef T type; };  // NOLINT
    template <typename T>
    struct RemoveReference<T&> { typedef T type; };  // NOLINT
    
    // A handy wrapper around RemoveReference that works when the argument
    // T depends on template parameters.
    #define GTEST_REMOVE_REFERENCE_(T) \
        typename ::testing::internal::RemoveReference<T>::type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top