Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 231 for forwarding (0.2 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/tsan12.go

    // libc interceptor that writes signal handlers to a global variable within the
    // TSAN runtime instead of making a sigaction system call. A bug in
    // syscall.runtime_AfterForkInChild corrupted TSAN's signal forwarding table
    // during calls to (*os/exec.Cmd).Run, causing the parent process to fail to
    // invoke signal handlers.
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"os/signal"
    	"syscall"
    )
    
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 929 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr.mlir

    // Test simple serialized computation consisting of a function named `main`
    // with a tf.Identity op forwarding the function single argument to the function
    // single result.
    
    // CHECK-LABEL: module
    // CHECK-SAME:  attributes {tf.versions = {producer = 888 : i32}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 13:27:00 UTC 2022
    - 998 bytes
    - Viewed (0)
  3. build/pause/windows/wincat/wincat.go

    limitations under the License.
    */
    
    // package main connects to the given host and port and redirects its stdin to the connection and
    // the connection's output to stdout. This is currently being used for port-forwarding for Windows Pods.
    package main
    
    import (
    	"fmt"
    	"io"
    	"log"
    	"net"
    	"os"
    	"sync"
    )
    
    func main() {
    	if len(os.Args) != 3 {
    		log.Fatalln("usage: wincat <host> <port>")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 26 14:37:02 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ForwardingLock.java

    import com.google.common.annotations.J2ktIncompatible;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.locks.Condition;
    import java.util.concurrent.locks.Lock;
    
    /** Forwarding wrapper around a {@code Lock}. */
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class ForwardingLock implements Lock {
      abstract Lock delegate();
    
      @Override
      public void lock() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ForwardingLock.java

    import com.google.common.annotations.J2ktIncompatible;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.locks.Condition;
    import java.util.concurrent.locks.Lock;
    
    /** Forwarding wrapper around a {@code Lock}. */
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class ForwardingLock implements Lock {
      abstract Lock delegate();
    
      @Override
      public void lock() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ForwardingCondition.java

    package com.google.common.util.concurrent;
    
    import com.google.common.annotations.J2ktIncompatible;
    import java.util.Date;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.locks.Condition;
    
    /** Forwarding wrapper around a {@code Condition}. */
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class ForwardingCondition implements Condition {
      abstract Condition delegate();
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-FORWARD -m conntrack --ctstate INVALID -j DROP
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    				COMMIT
    				*nat
    				:KUBE-SERVICES - [0:0]
    				:KUBE-NODEPORTS - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/nds.go

    // associated IPs (including service entries).
    // The agent then updates its internal DNS based on this data. If DNS capture is enabled
    // in the pod the agent will capture all DNS requests and attempt to resolve locally before
    // forwarding to upstream dns servers.
    type NdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    var _ model.XdsResourceGenerator = &NdsGenerator{}
    
    // Map of all configs that do not impact NDS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/.clang-tidy

            bugprone-dynamic-static-initializers,
            bugprone-macro-parentheses,
            bugprone-macro-repeated-side-effects,
            bugprone-misplaced-widening-cast,
            bugprone-move-forwarding-reference,
            bugprone-multiple-statement-macro,
            bugprone-suspicious-semicolon,
            bugprone-swapped-arguments,
            bugprone-terminating-continue,
            bugprone-unused-raii,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/ForwardingGraph.java

    package com.google.common.graph;
    
    import java.util.Set;
    
    /**
     * A class to allow {@link Graph} implementations to be backed by a {@link BaseGraph}. This is not
     * currently planned to be released as a general-purpose forwarding class.
     *
     * @author James Sexton
     */
    @ElementTypesAreNonnullByDefault
    abstract class ForwardingGraph<N> extends AbstractGraph<N> {
    
      abstract BaseGraph<N> delegate();
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top