Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for unpipe (0.18 sec)

  1. src/net/http/h2_bundle.go

    	ContextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc)
    }
    
    // pipe is a goroutine-safe io.Reader/io.Writer pair. It's like
    // io.Pipe except there are no PipeReader/PipeWriter halves, and the
    // underlying buffer is an interface. (io.Pipe is always unbuffered)
    type http2pipe struct {
    	mu       sync.Mutex
    	c        sync.Cond       // c.L lazily initialized to &p.mu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.24.md

    - Kubeadm: default the kubeadm configuration to the containerd socket (Unix: `unix:///var/run/containerd/containerd.sock`, Windows: `npipe:////./pipe/containerd-containerd`) instead of the one for Docker. If the `Init|JoinConfiguration.nodeRegistration.criSocket` field is empty during cluster creation and multiple sockets are found on the host always throw an error and ask the user to specify...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      return input_type;
    }
    
    // Returns axis in HLO format from TF elements attr with exactly one element or
    // is an IntegerAttr, containing axis in the TensorFlow format. TensorFlow
    // format supports negative indexing unlike HLO.
    static IntegerAttr GetHLOAxisFromTFAxis(Attribute attr, int64_t rank,
                                            Builder *b) {
      IntegerAttr intAttr = mlir::dyn_cast_or_null<IntegerAttr>(attr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </pre>
    
    <pre>
    i, j := 0, 10
    f := func() int { return 7 }
    ch := make(chan int)
    r, w, _ := os.Pipe()  // os.Pipe() returns a connected pair of Files and an error, if any
    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <p>
    Unlike regular variable declarations, a short variable declaration may <i>redeclare</i>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		}
    		panic("unreachable")
    	})
    }
    
    // ternary emits code to evaluate cond ? x : y.
    func (s *state) ternary(cond, x, y *ssa.Value) *ssa.Value {
    	// Note that we need a new ternaryVar each time (unlike okVar where we can
    	// reuse the variable) because it might have a different type every time.
    	ternaryVar := ssaMarker("ternary")
    
    	bThen := s.f.NewBlock(ssa.BlockPlain)
    	bElse := s.f.NewBlock(ssa.BlockPlain)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    ## 0.93.0
    
    ### Features
    
    * ✨ Add support for `lifespan` async context managers (superseding `startup` and `shutdown` events). Initial PR [#2944](https://github.com/tiangolo/fastapi/pull/2944) by [@uSpike](https://github.com/uSpike).
    
    Now, instead of using independent `startup` and `shutdown` events, you can define that logic in a single function with `yield` decorated with `@asynccontextmanager` (an async context manager).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="\n#!\ rnews" type="string" offset="2:9"/>
          <match value="\nN#!\ rnews" type="string" offset="2:9"/>
          <match value="\nForward\ to" type="string" offset="2:9"/>
          <match value="\nPipe\ to" type="string" offset="2:9"/>
          <match value="\nReturn-Path:" type="string" offset="2:9"/>
          <match value="\nFrom:" type="string" offset="2:9"/>
          <match value="\nReceived:" type="string" offset="2:9"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. api/go1.16.txt

    pkg syscall (darwin-arm64), const ESHLIBVERS Errno
    pkg syscall (darwin-arm64), const ESHUTDOWN = 58
    pkg syscall (darwin-arm64), const ESOCKTNOSUPPORT = 44
    pkg syscall (darwin-arm64), const ESPIPE = 29
    pkg syscall (darwin-arm64), const ESRCH = 3
    pkg syscall (darwin-arm64), const ESTALE = 70
    pkg syscall (darwin-arm64), const ETIME = 101
    pkg syscall (darwin-arm64), const ETIME Errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    				// We set the mungedPodSpec's node affinity to the old pod's node affinity.
    				mungedPodSpec.Affinity.NodeAffinity = oldNodeAffinity // +k8s:verify-mutation:reason=clone
    			}
    		}
    
    		// Note: Unlike NodeAffinity and NodeSelector, we cannot make PodAffinity/PodAntiAffinity mutable due to the presence of the matchLabelKeys/mismatchLabelKeys feature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-61888`](https://youtrack.jetbrains.com/issue/KT-61888) [Kotlin/wasm] in kotlin.test support for `@AfterTest` for async tests
    - [`KT-64803`](https://youtrack.jetbrains.com/issue/KT-64803) K/Wasm: non-capturing lambdas are not singleton unlike same lambdas in jvm
    - [`KT-64449`](https://youtrack.jetbrains.com/issue/KT-64449) K2: Implement K1WasmWasiCodegenBoxTestGenerated for K2
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top