Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,362 for ControlZ (0.45 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/end-to-end-tpu-reshard-variables.mlir

        tf_executor.graph {
          %control = tf_executor.island {
            "tf.StatefulPartitionedCall"(%arg0) <{config = "", config_proto = "", executor_type = "", f = @partitioned}> : (tensor<*x!tf_type.resource>) -> ()
            tf_executor.yield
          }
          tf_executor.fetch %control : !tf_executor.control
        }
        return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pilot/pkg/simulation/traffic.go

    	"regexp"
    	"strings"
    	"testing"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	envoycore "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	"github.com/google/go-cmp/cmp"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. istioctl/pkg/version/version.go

      # (This is the usual way to get the control plane version with an out-of-cluster control plane.)
      istioctl x version --xds-address istio.cloudprovider.example.com:15012
    
      # Retrieve version information via Kubernetes config, using token security
      # (This is the usual way to get the control plane version with an in-cluster control plane.)
      istioctl x version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_pod_control_test.go

    	control := NewStatefulPodControl(fakeClient, nil, claimLister, recorder)
    	fakeClient.AddReactor("*", "*", func(action core.Action) (bool, runtime.Object, error) {
    		t.Error("no-op update should not make any client invocation")
    		return true, nil, apierrors.NewInternalError(errors.New("if we are here we have a problem"))
    	})
    	if err := control.UpdateStatefulPod(ctx, set, pod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/join/waitcontrolplane.go

    )
    
    // NewWaitControlPlanePhase is a hidden phase that runs after the control-plane and etcd phases
    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name: "wait-control-plane",
    		// TODO: remove this EXPERIMENTAL prefix once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    		Short: "EXPERIMENTAL: Wait for the control plane to start",
    		Run:   runWaitControlPlanePhase,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // ```
    //
    // `%merged_control` is a NoOp control barrier in this case.
    //
    // Checks if the value `control` is a NoOp control barrier.
    bool IsNoOpControlBarrier(Value control) {
      if (!mlir::isa<ControlType>(control.getType())) return false;
    
      auto control_island = dyn_cast_or_null<IslandOp>(control.getDefiningOp());
      if (!control_island) return false;
    
      // All islands perfectly wrap a single op is an invariant of this pass and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Socket control messages
    
    package unix
    
    import "unsafe"
    
    // UnixCredentials encodes credentials into a socket control message
    // for sending to another process. This can be used for
    // authentication.
    func UnixCredentials(ucred *Ucred) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/model/permission.go

    package model
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
    	routepb "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	uri_template "github.com/envoyproxy/go-control-plane/envoy/extensions/path/match/uri_template/v3"
    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheControlJvmTest.kt

        val headers = headersOf("Cache-Control", "max-age=12", "Pragma", "must-revalidate", "Pragma", "public")
        val cacheControl = parse(headers)
        assertThat(cacheControl.toString()).isEqualTo("max-age=12, public, must-revalidate")
      }
    
      @Test
      fun parseCacheControlHeaderValueIsRetained() {
        val value = "max-age=12"
        val headers = headersOf("Cache-Control", value)
        val cacheControl = parse(headers)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    // license that can be found in the LICENSE file.
    
    // Package cfg constructs a simple control-flow graph (CFG) of the
    // statements and expressions within a single function.
    //
    // Use cfg.New to construct the CFG for a function body.
    //
    // The blocks of the CFG contain all the function's non-control
    // statements.  The CFG does not contain control statements such as If,
    // Switch, Select, and Branch, but does contain their subexpressions;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top