Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 198 for alternate (0.41 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    // in this StatefulSet.
    message StatefulSetOrdinals {
      // start is the number representing the first replica's index. It may be used
      // to number replicas from an alternate index (eg: 1-indexed) over the default
      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    // in this StatefulSet.
    message StatefulSetOrdinals {
      // start is the number representing the first replica's index. It may be used
      // to number replicas from an alternate index (eg: 1-indexed) over the default
      // 0-indexed names, or to orchestrate progressive movement of replicas from
      // one StatefulSet to another.
      // If set, replica indices will be in the range:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

    control more specific details.
    
    The default output shows the package import path:
    
        bytes
        encoding/json
        github.com/gorilla/mux
        golang.org/x/net/html
    
    The -f flag specifies an alternate format for the list, using the
    syntax of package template. The default output is equivalent
    to -f '{{.ImportPath}}'. The struct being passed to the template is:
    
        type Package struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/service.go

    	sep := "|"
    	// This could be the DNS srv form of the cluster that uses outbound_.port_.subset_.hostname
    	// Since we do not want every callsite to implement the logic to differentiate between the two forms
    	// we add an alternate parser here.
    	if strings.HasPrefix(s, trafficDirectionOutboundSrvPrefix) ||
    		strings.HasPrefix(s, trafficDirectionInboundSrvPrefix) {
    		sep = "_."
    	}
    
    	// Format: dir|port|subset|hostname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. src/net/http/client.go

    // maintained by the Go team and known to implement the latest
    // optional semantics (notably contexts). The Request is used
    // to check whether this particular request is using an alternate protocol,
    // in which case we need to check the RoundTripper for that protocol.
    func knownRoundTripperImpl(rt RoundTripper, req *Request) bool {
    	switch t := rt.(type) {
    	case *Transport:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (MOVWstore [off] {sym} ptr (MOVWreg  x) mem) => (MOVWstore [off] {sym} ptr x mem)
    (MOVWstore [off] {sym} ptr (MOVWUreg x) mem) => (MOVWstore [off] {sym} ptr x mem)
    
    // Replace extend after load with alternate load where possible.
    (MOVBreg  <t> x:(MOVBUload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBload  <t> [off] {sym} ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    direct path to the underlying code hosting site.
    
    Import path checking is disabled for code found within vendor trees.
    This makes it possible to copy code into alternate locations in vendor trees
    without needing to update import comments.
    
    Import path checking is also disabled when using modules.
    Import path comments are obsoleted by the go.mod file's module statement.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    // Goroutine pointers are also kept in non-GC-visible places like TLS,
    // so I can't see them ever moving. If we did want to start moving data
    // in the GC, we'd need to allocate the goroutine structs from an
    // alternate arena. Using guintptr doesn't make that problem any worse.
    // Note that pollDesc.rg, pollDesc.wg also store g in uintptr form,
    // so they would need to be updated too if g's start moving.
    type guintptr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tests/get-alternative-subgraph.mlir

    // RUN: tac-opt-all-backends -tfl-get-alternative-subgraph='device-specs=GPU' %s -split-input-file -verify-diagnostics | FileCheck %s
    
    module {
      func.func @simpleTest(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>, %arg2: tensor<1xf32>, %arg3: tensor<1xf32>) -> tensor<2x1xf32> {
        %0 = func.call @func_0_GPU_FLOAT(%arg0, %arg1, %arg2) {tac.interface_name = "func_0"} : (tensor<1xf32>, tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. src/go/token/position.go

    }
    
    // AddLineColumnInfo adds alternative file, line, and column number
    // information for a given file offset. The offset must be larger
    // than the offset for the previously added alternative line info
    // and smaller than the file size; otherwise the information is
    // ignored.
    //
    // AddLineColumnInfo is typically used to register alternative position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top