Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 156 for unwrapped (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_composite_resource_ops.mlir

    // RUN: tf-opt %s -tf-tpu-colocate-composite-resource-ops | FileCheck %s
    
    // Tests ReadVariable op using composite device resource is wrapped inside
    // tf_device.Cluster.
    
    // CHECK-LABEL: func @testReadVariableOpColocated
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<*x!tf_type.resource<tensor<4xf32>>>)
    func.func @testReadVariableOpColocated(%arg0: tensor<*x!tf_type.resource<tensor<4xf32>>>) {
      // CHECK:      tf_device.replicate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/os/file_posix.go

    // A uid or gid of -1 means to not change that value.
    // If there is an error, it will be of type [*PathError].
    //
    // On Windows or Plan 9, Chown always returns the [syscall.EWINDOWS] or
    // EPLAN9 error, wrapped in *PathError.
    func Chown(name string, uid, gid int) error {
    	e := ignoringEINTR(func() error {
    		return syscall.Chown(name, uid, gid)
    	})
    	if e != nil {
    		return &PathError{Op: "chown", Path: name, Err: e}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromStringArray(), "Runtime.getRuntime().exec(command)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[])", "", ""],
                // Null-safe calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcweb/insecure.go

    	if req.Host == "" && req.URL.Host == "" {
    		http.Error(w, "no Host provided in request", http.StatusBadRequest)
    		return
    	}
    
    	// Note that if the handler is wrapped with http.StripPrefix, the prefix
    	// will remain stripped in the redirected URL, preventing redirect loops
    	// if the scheme is already "http".
    
    	u := *req.URL
    	u.Scheme = "http"
    	u.User = nil
    	u.Host = req.Host
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainPrivate.java

         * @return {@code true} if the requirements match, otherwise {@code false}
         */
        boolean matchesRequirements(Map<String, String> requirements);
    
        /**
         *
         * @return the original model wrapped by this interface
         */
        ToolchainModel getModel();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/resolver.go

    	// attempted but the corresponding schema cannot be found.
    	ResolveSchema(gvk schema.GroupVersionKind) (*spec.Schema, error)
    }
    
    // ErrSchemaNotFound is wrapped and returned if the schema cannot be located
    // by the resolver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:54 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null as String[])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[], null)", "", ""],
                // Null-safe calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/go/internal/typeparams/typeparams.go

    // accidental misuse such as encountered in golang/go#63933.
    //
    // TODO(rfindley): remove this helper, in favor of just having a helper
    // function that returns indices.
    type IndexExpr struct {
    	Orig    ast.Expr   // the wrapped expr, which may be distinct from the IndexListExpr below.
    	X       ast.Expr   // expression
    	Lbrack  token.Pos  // position of "["
    	Indices []ast.Expr // index expressions
    	Rbrack  token.Pos  // position of "]"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/graph_function.h

      ~GraphFunction() override;
    
      // GraphFunction maybe stay alive for the duration of the returned
      // FunctionDef.
      Status GetFunctionDef(const FunctionDef** fdef) override;
    
      // Returns a shared reference to the wrapped function.
      absl::StatusOr<core::RefCountPtr<FunctionRecord>> GetFunctionRecord()
          override {
        return func_record_.GetNewRef();
      }
    
      // For LLVM style RTTI.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. pkg/proxy/metaproxier/meta_proxier.go

    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy"
    	"k8s.io/kubernetes/pkg/proxy/config"
    )
    
    type metaProxier struct {
    	// actual, wrapped
    	ipv4Proxier proxy.Provider
    	// actual, wrapped
    	ipv6Proxier proxy.Provider
    	// TODO(imroc): implement node handler for meta proxier.
    	config.NoopNodeHandler
    }
    
    // NewMetaProxier returns a dual-stack "meta-proxier". Proxier API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top