Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for var_ (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_initialize_variables_in_session_init_fail.mlir

        %0 = "tf.VarHandleOp"() {_class = ["loc:@dense/kernel"], allowed_devices = [], container = "", device = "/job:worker/replica:0/task:1/device:CPU:0", shared_name = "var1"} : () -> tensor<!tf_type.resource<tensor<100x50xf32>>>
        %1 = "tf.ReadVariableOp"(%0) {device = ""} : (tensor<!tf_type.resource<tensor<100x50xf32>>>) -> tensor<100x50xf32>
        func.return %1 : tensor<100x50xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 994 bytes
    - Viewed (0)
  2. test-site/activator.bat

    @REM CFG_OPTS  - JVM options (optional)
    @REM Configuration:
    @REM activatorconfig.txt found in the ACTIVATOR_HOME or ACTIVATOR_HOME/ACTIVATOR_VERSION
    @setlocal enabledelayedexpansion
    
    @echo off
    
    set "var1=%~1"
    if defined var1 (
      if "%var1%"=="help" (
        echo.
        echo Usage activator [options] [command]
        echo.
        echo Commands:
        echo ui                 Start the Activator UI
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K 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. 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)
  5. 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)
  6. 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)
Back to top