Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 135 for forwarding (0.21 sec)

  1. cmd/kubeadm/app/preflight/checks_test.go

    	}
    	internalcfg.LocalAPIEndpoint.AdvertiseAddress = "" // AdvertiseAddress is optional, it could be auto-detected.
    	ipv4File := "FileContent--proc-sys-net-ipv4-ip_forward"
    	ipv6File := "FileContent--proc-sys-net-ipv6-conf-default-forwarding"
    	var tests = []struct {
    		testName    string
    		PodSubnet   string
    		serviceCidr string
    		expStr      []string
    	}{
    		{
    			testName:    "dual stack",
    			PodSubnet:   "fda9:d324:354d:0::/56",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    		"Turns on aggregator routing requests to endpoints IP rather than cluster IP.")
    
    	fs.BoolVar(&s.AggregatorRejectForwardingRedirects, "aggregator-reject-forwarding-redirect", s.AggregatorRejectForwardingRedirects,
    		"Aggregator reject forwarding redirect response back to client.")
    
    	fs.StringVar(&s.ServiceAccountSigningKeyFile, "service-account-signing-key-file", s.ServiceAccountSigningKeyFile, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy.go

    // as the new connection may not go to the same istiod. Vice versa case also applies.
    func (p *XdsProxy) StreamAggregatedResources(downstream DiscoveryStream) error {
    	proxyLog.Debugf("accepted XDS connection from Envoy, forwarding to upstream XDS server")
    	return p.handleStream(downstream)
    }
    
    func (p *XdsProxy) handleStream(downstream adsStream) error {
    	con := &ProxyConnection{
    		conID:           connectionNumber.Inc(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. tensorflow/cc/tools/freeze_saved_model.cc

          StatusOr<string> handle_name = GetHandleNameIfNeedsToFreeze(
              name_to_node_map, node.name(), variable_node_names);
          if (handle_name.ok()) {
            // Identity node that is forwarding the value of a frozen
            // VarhandleOp. We ensure that the dtype matches of the variable dtype.
            NodeDef* new_node = frozen_graph_def->add_node();
            *new_node = node;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	t.Logf("%v\n%s", cmd.Args, out)
    	expectSignal(t, err, syscall.SIGSEGV, 0)
    
    	// SIGPIPE is never forwarded on darwin. See golang.org/issue/33384.
    	if runtime.GOOS != "darwin" && runtime.GOOS != "ios" {
    		// Test SIGPIPE forwarding
    		cmd = exec.Command(bin[0], append(bin[1:], "3")...)
    
    		out, err = cmd.CombinedOutput()
    		if len(out) > 0 {
    			t.Logf("%s", out)
    		}
    		expectSignal(t, err, syscall.SIGPIPE, 0)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/net/http/client.go

    //     will forward the sensitive headers, but a redirect to "bar.com" will not.
    //   - when forwarding the "Cookie" header with a non-nil cookie Jar.
    //     Since each redirect may mutate the state of the cookie jar,
    //     a redirect may possibly alter a cookie set in the initial request.
    //     When forwarding the "Cookie" header, any mutated cookies will be omitted,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

    }
    
    // Checks if a block argument is replicated (forwarding replicated inputs).
    bool ReplicateOp::IsReplicatedBlockArgument(BlockArgument block_arg) {
      assert(block_arg.getOwner() == &GetBody());
      return block_arg.getArgNumber() < GetNumReplicatedBlockArguments();
    }
    
    // Checks if a block argument is packed (forwarding a packed input).
    bool ReplicateOp::IsPackedBlockArgument(BlockArgument block_arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

           tf_device.cluster op.
        2) Instead of taking resource handles as input, this device computation now
           takes snapshotted values of that device.
        3) Some resource load operations are eliminated with store-load forwarding.
        4) Updated values to resource are appended to `tf_device.return` and used by
           external resource store operations so that resources are still updated
           after the computation.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. cmd/metacache-walk.go

    		// Process in sort order.
    		sort.Strings(entries)
    		dirStack := make([]string, 0, 5)
    		prefix = "" // Remove prefix after first level as we have already filtered the list.
    		if len(forward) > 0 {
    			// Conservative forwarding. Entries may be either objects or prefixes.
    			for i, entry := range entries {
    				if entry >= forward || strings.HasPrefix(forward, entry) {
    					entries = entries[i:]
    					break
    				}
    			}
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug_test.go

    		for {
    			n, err := s.stdout.Read(buffer)
    			if n > 0 {
    				s.outChan <- string(buffer[0:n])
    			}
    			if err == io.EOF || n == 0 {
    				break
    			}
    			if err != nil {
    				fmt.Printf("Saw an error forwarding stdout")
    				break
    			}
    		}
    		close(s.outChan)
    		s.stdout.Close()
    	}()
    
    	go func() {
    		buffer := make([]byte, 4096)
    		for {
    			n, err := s.stderr.Read(buffer)
    			if n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top