Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 155 for rebind (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      };
      SmallVector<Type, 4> new_result_types;
      for (OpResult result : op->getResults()) {
        if (can_eliminate(result)) continue;
        new_result_types.push_back(result.getType());
      }
    
      // Rebuild the new operation with lesser number of results.
      OpBuilder builder(op);
      Operation *new_op = Operation::create(
          op->getLoc(), op->getName(), new_result_types, op->getOperands(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    ----
    
    It is a common practice to implement any custom build logic (like plugins and task types) that is more complex in nature as external classes in a standalone project. The main driver behind this approach is bundle the compiled code into a JAR file, publish it to a binary repository and reuse it across various projects.
    
    [[sub:test-kit-classpath-injection]]
    == Getting the plugin-under-test into the test build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    // to the report options.
    func (rpt *Report) newTrimmedGraph() (g *graph.Graph, origCount, droppedNodes, droppedEdges int) {
    	o := rpt.options
    
    	// Build a graph and refine it. On each refinement step we must rebuild the graph from the samples,
    	// as the graph itself doesn't contain enough information to preserve full precision.
    	visualMode := o.OutputFormat == Dot
    	cumSort := o.CumSort
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. src/reflect/abi.go

    }
    
    // regAssign attempts to reserve argument registers for a value of
    // type t, stored at some offset.
    //
    // It returns whether or not the assignment succeeded, but
    // leaves any changes it made to a.steps behind, so the caller
    // must undo that work by adjusting a.steps if it fails.
    //
    // This method along with the assign* methods represent the
    // complete register-assignment algorithm for the Go ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    		return NewInvalidObjError(key, err)
    	}
    	return nil
    }
    
    // Interface offers a common interface for object marshaling/unmarshaling operations and
    // hides all the storage-related operations behind it.
    type Interface interface {
    	// Returns Versioner associated with this interface.
    	Versioner() Versioner
    
    	// Create adds a new object at a key unless it already exists. 'ttl' is time-to-live
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/runtime/string.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/bytealg"
    	"internal/goarch"
    	"unsafe"
    )
    
    // The constant is known to the compiler.
    // There is no fundamental theory behind this number.
    const tmpStringBufSize = 32
    
    type tmpBuf [tmpStringBufSize]byte
    
    // concatstrings implements a Go string concatenation x+y+z+...
    // The operands are passed in the slice a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	if len(slices) == 0 {
    		log.Debugf("endpoint slices of (%s, %s) not found", name, namespace)
    		return nil
    	}
    
    	if updateCache {
    		// A cache update was requested. Rebuild the endpoints for these slices.
    		for _, slice := range slices {
    			esc.updateEndpointCacheForSlice(hostName, slice)
    		}
    	}
    
    	return esc.endpointCache.Get(hostName)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/model/proxy.go

    	// IdleTimeout specifies the idle timeout for the proxy, in duration format (10s).
    	// If not set, default timeout is 1 hour.
    	IdleTimeout string `json:"IDLE_TIMEOUT,omitempty"`
    
    	// HTTP10 indicates the application behind the sidecar is making outbound http requests with HTTP/1.0
    	// protocol. It will enable the "AcceptHttp_10" option on the http options for outbound HTTP listeners.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/security/first-steps.md

        相対URLを使っているので、APIが`https://example.com/`にある場合、`https://example.com/token`を参照します。しかし、APIが`https://example.com/api/v1/`にある場合は`https://example.com/api/v1/token`を参照することになります。
    
        相対 URL を使うことは、[プロキシと接続](../../advanced/behind-a-proxy.md){.internal-link target=_blank}のような高度なユースケースでもアプリケーションを動作させ続けるために重要です。
    
    このパラメーターはエンドポイント/ *path operation*を作成しません。しかし、URL`/token`はクライアントがトークンを取得するために使用するものであると宣言します。この情報は OpenAPI やインタラクティブな API ドキュメントシステムで使われます。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	// the reader:
    	// - The reader is lagging behind in finishing off the last generation.
    	//   In this case, trace buffers could even be empty, but the trace
    	//   advancer will be waiting on the reader, so we have to make sure
    	//   to schedule the reader ASAP.
    	// - The reader has pending work to process for it's reader generation
    	//   (assuming readerGen is not lagging behind). Note that we also want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top