Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for var_ (0.19 sec)

  1. tensorflow/compiler/aot/tests/tfcompile_test.cc

      fn.Run();
      EXPECT_EQ(fn.result0(0, 0), 23);
      EXPECT_EQ(fn.result0(1, 0), 65);
      EXPECT_EQ(fn.var_x(), 65);
    
      EXPECT_EQ(fn.var_x_data(), &x);
      EXPECT_EQ(x, 65);
      fn.Run();
      EXPECT_EQ(fn.result0(0, 0), 65);
      EXPECT_EQ(fn.result0(1, 0), 107);
      EXPECT_EQ(fn.var_x(), 107);
    }
    
    TEST(TFCompileTest, VariableSequentialUpdates) {
      Eigen::ThreadPool tp(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

          %out_0, %ctl_0 = tf_executor.island wraps "tf.Const"() {value = dense<"var_0"> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
          %out_1, %ctl_1 = tf_executor.island wraps "tf.VarHandleOp"() {container = "", shared_name = "var_0", device = "/device:CPU:0"} : () -> tensor<!tf_type.resource<tensor<2xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. maven-jline/src/main/java/org/apache/maven/jline/MessageUtils.java

            doSystemUninstall();
            if (shutdownHook != null) {
                try {
                    Runtime.getRuntime().removeShutdownHook(shutdownHook);
                } catch (IllegalStateException var3) {
                    // ignore
                }
            }
        }
    
        private static void doSystemUninstall() {
            try {
                AnsiConsole.systemUninstall();
            } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 13:48:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            result.output.contains "Hello world!1"
            result.output.contains "Hello world! (buildSrc)"
        }
    
        static class FileSubclass extends File {
            FileSubclass(File var1) {
                super(var1.absolutePath)
            }
        }
    
        @InspectsExecutedTasks
        def "injected classpath may contain File subclasses"() {
            given:
            buildFile << plugin.build().useDeclaration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pkg/kubelet/pod/mirror_client_test.go

    		"bar_foo":         {Name: "bar", Namespace: "foo"},
    		"bar.org_foo.com": {Name: "bar.org", Namespace: "foo.com"},
    		"bar-bar_foo":     {Name: "bar-bar", Namespace: "foo"},
    	}
    	failedCases := []string{"barfoo", "bar_foo_foo", "", "bar_", "_foo"}
    
    	for podFullName, expected := range successfulCases {
    		name, namespace, err := kubecontainer.ParsePodFullName(podFullName)
    		if err != nil {
    			t.Errorf("unexpected error when parsing the full name: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:44:09 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. pkg/wasm/httpfetcher.go

    package wasm
    
    import (
    	"archive/tar"
    	"bytes"
    	"compress/gzip"
    	"context"
    	"crypto/tls"
    	"fmt"
    	"io"
    	"net/http"
    	"time"
    
    	"istio.io/istio/pkg/backoff"
    )
    
    var (
    	// Referred to https://en.wikipedia.org/wiki/Tar_(computing)#UStar_format
    	tarMagicNumber = []byte{0x75, 0x73, 0x74, 0x61, 0x72}
    	// Referred to https://en.wikipedia.org/wiki/Gzip#File_format
    	gzMagicNumber = []byte{0x1f, 0x8b}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarFileTree.java

            return tarFileProvider;
        }
    
        private File getExpandedDir() {
            File tarFile = tarFileProvider.get();
            HashCode fileHash = hashFile(tarFile);
            String expandedDirName = "tar_" + fileHash;
            return temporaryExtractionDir.newTemporaryDirectory(".cache", "expanded", expandedDirName);
        }
    
        private HashCode hashFile(File tarFile) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_distributed_test.cc

             "      input_arg {"
             "        name: 'var0'"
             "        type: DT_RESOURCE"
             "      }"
             "      output_arg {"
             "        name: 'var0_value'"
             "        type: DT_FLOAT"
             "      }"
             "    }"
             "    node_def {"
             "      name: 'read0'"
             "      op: 'ReadVariableOp'"
             "      input: 'var0'"
             "      attr {"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/go/doc/example_test.go

    func GFunc[T any]() {}
    
    type GType[T any] int
    
    func (GType[T]) M() {}
    `
    	const test = `
    package p_test
    
    func ExampleConst1() {} // invalid - no support for consts and vars
    func ExampleVar1()   {} // invalid - no support for consts and vars
    
    func Example()               {}
    func Example_()              {} // invalid - suffix must start with a lower-case letter
    func Example_suffix()        {}
    func Example_suffix_xX_X_x() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                rootProject.name = 'test'
                gradle.rootProject {
                    configurations.create('default')
                    group = 'test'
                    version = '1.0'
                    def jar = tasks.create("jar_$version", Jar) {
                        archiveBaseName = "test"
                        destinationDirectory = buildDir
                        archiveVersion = project.version
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top