Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,315 for ControlZ (0.15 sec)

  1. src/net/tcpconn_keepalive_test.go

    			t.Fatal(err)
    		}
    		defer c.Close()
    
    		if errHook != nil {
    			t.Fatal(errHook)
    		}
    
    		sc, err := c.(*TCPConn).SyscallConn()
    		if err != nil {
    			t.Fatal(err)
    		}
    		if err := sc.Control(func(fd uintptr) {
    			verifyKeepAliveSettings(t, fdType(fd), oldCfg, cfg)
    		}); err != nil {
    			t.Fatal(err)
    		}
    	}
    }
    
    func TestTCPConnKeepAliveConfigListener(t *testing.T) {
    	maybeSkipKeepAliveTest(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/extension/wasmplugin_test.go

    package extension
    
    import (
    	"testing"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	httpwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	networkwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/wasm/v3"
    	wasmextension "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"github.com/google/go-cmp/cmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// version the CEL expressions are evaluated against
    	// Valid values: v1
    	// Required, no default value
    	MatchConditionSubjectAccessReviewVersion string
    	// Controls the authorization decision when a webhook request fails to
    	// complete or returns a malformed response or errors evaluating
    	// matchConditions.
    	// Valid values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

        outer_op.getBody().takeBody(region);
        // Careful: We can't use outer_op.getResults(), because that also includes
        // the control token.
        op->replaceAllUsesWith(outer_op.getOutputs());
        op->erase();
        // Control token is last result of outer_op.
        control_tokens.assign(1, outer_op.getResults().back());
      }
    }
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/constants/constants.go

    	CertificateKeySize = 32
    
    	// LabelNodeRoleControlPlane specifies that a node hosts control-plane components
    	LabelNodeRoleControlPlane = "node-role.kubernetes.io/control-plane"
    
    	// LabelExcludeFromExternalLB can be set on a node to exclude it from external load balancers.
    	// This is added to control plane nodes to preserve backwards compatibility with a legacy behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/cluster/cluster.go

    	// IsPrimary returns true if this is a primary cluster, containing an instance
    	// of the Istio control plane.
    	IsPrimary() bool
    
    	// IsConfig returns true if this is a config cluster, used as the source of
    	// Istio config for one or more control planes.
    	IsConfig() bool
    
    	// IsRemote returns true if this is a remote cluster, which uses a control plane
    	// residing in another cluster.
    	IsRemote() bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/net/iprawsock_posix.go

    	default:
    		return nil, UnknownNetworkError(sd.network)
    	}
    	ctrlCtxFn := sd.Dialer.ControlContext
    	if ctrlCtxFn == nil && sd.Dialer.Control != nil {
    		ctrlCtxFn = func(ctx context.Context, network, address string, c syscall.RawConn) error {
    			return sd.Dialer.Control(network, address, c)
    		}
    	}
    	fd, err := internetSocket(ctx, network, laddr, raddr, syscall.SOCK_RAW, proto, "dial", ctrlCtxFn)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Ret", controls: 1},       // no successors, Controls[0] value is memory result
    	{name: "RetJmp", controls: 1},    // no successors, Controls[0] value is a tail call
    	{name: "Exit", controls: 1},      // no successors, Controls[0] value generates a panic
    	{name: "JumpTable", controls: 1}, // multiple successors, the integer Controls[0] selects which one
    
    	// transient block state used for dead code removal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/wait.go

    	}
    }
    
    // WaitForControlPlaneComponents waits for all control plane components to report "ok" on /healthz
    func (w *KubeWaiter) WaitForControlPlaneComponents(cfg *kubeadmapi.ClusterConfiguration) error {
    	fmt.Printf("[control-plane-check] Waiting for healthy control plane components."+
    		" This can take up to %v\n", w.timeout)
    
    	components := getControlPlaneComponents(cfg)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/resource_quota_controller.go

    	// function that controls full recalculation of quota usage
    	resyncPeriod controller.ResyncPeriodFunc
    	// knows how to calculate usage
    	registry quota.Registry
    	// knows how to monitor all the resources tracked by quota and trigger replenishment
    	quotaMonitor *QuotaMonitor
    	// controls the workers that process quotas
    	// this lock is acquired to control write access to the monitors and ensures that all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top