Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 407 for unwrapped (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/c/eager/c_api_internal.h

      bool async = false;
      TFE_ContextDevicePlacementPolicy device_placement_policy{
          TFE_DEVICE_PLACEMENT_SILENT};
      // If true, use TFRT backend
      bool use_tfrt = false;
      // Whether to run elementary eager ops wrapped in a call op.
      bool run_eager_op_as_function = false;
      // Whether to rewrite jit_compile functions.
      bool jit_compile_rewrite = false;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 18 19:26:34 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	if err := rt.createObject(ctx); err != nil {
    		return nil, false, err
    	}
    	return rt.wrapped.TransformFromStorage(ctx, data, dataCtx)
    }
    
    func (rt *reproducingTransformer) TransformToStorage(ctx context.Context, data []byte, dataCtx value.Context) ([]byte, error) {
    	return rt.wrapped.TransformToStorage(ctx, data, dataCtx)
    }
    
    func (rt *reproducingTransformer) createObject(ctx context.Context) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/abstract_function.h

      AbstractFunctionKind getKind() const { return kind_; }
    
      // Returns the AbstractFunction as a FunctionDef.
      virtual Status GetFunctionDef(const FunctionDef**) = 0;
    
      // Returns a shared reference to the wrapped function.
      virtual absl::StatusOr<core::RefCountPtr<FunctionRecord>>
      GetFunctionRecord() = 0;
    
     private:
      const AbstractFunctionKind kind_;
    };
    
    using AbstractFunctionPtr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/escape/Escapers.java

       * UnicodeEscaper.
       *
       * <p>When a {@link CharEscaper} escaper is wrapped by this method it acquires extra behavior with
       * respect to the well-formedness of Unicode character sequences and will throw {@link
       * IllegalArgumentException} when given bad input.
       *
       * @param escaper the instance to be wrapped
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. src/database/sql/fakedb_test.go

    	mu       sync.Mutex
    	tables   map[string]*table
    	badConn  bool
    	allowAny bool
    }
    
    type fakeError struct {
    	Message string
    	Wrapped error
    }
    
    func (err fakeError) Error() string {
    	return err.Message
    }
    
    func (err fakeError) Unwrap() error {
    	return err.Wrapped
    }
    
    type table struct {
    	mu      sync.Mutex
    	colname []string
    	coltype []string
    	rows    []*row
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/escape/Escapers.java

       * UnicodeEscaper.
       *
       * <p>When a {@link CharEscaper} escaper is wrapped by this method it acquires extra behavior with
       * respect to the well-formedness of Unicode character sequences and will throw {@link
       * IllegalArgumentException} when given bad input.
       *
       * @param escaper the instance to be wrapped
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top