Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,018 for ControlZ (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    // TensorFlow Executor Type Constraint
    //===----------------------------------------------------------------------===//
    
    // Predicate to verify all control inputs appear after any non-control inputs.
    def ControlOperandsAfterAllData :
        PredOpTrait<"all control inputs must appear after any non-control input",
                    CPred<"succeeded(VerifyControlOperandsAfterAllData(&$_op))">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    // Tests nested replica and parallel execute groups.
    func.func @nested_replica_and_parallel_execute_groups() {
      tf_executor.graph {
        // CHECK: %[[control:.*]] = tf_executor.island wraps "tf.A"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  3. src/image/gif/reader.go

    		}
    	}
    }
    
    func (d *decoder) readGraphicControl() error {
    	if err := readFull(d.r, d.tmp[:6]); err != nil {
    		return fmt.Errorf("gif: can't read graphic control: %s", err)
    	}
    	if d.tmp[0] != 4 {
    		return fmt.Errorf("gif: invalid graphic control extension block size: %d", d.tmp[0])
    	}
    	flags := d.tmp[1]
    	d.disposalMethod = (flags & gcDisposalMethodMask) >> 2
    	d.delayTime = int(d.tmp[2]) | int(d.tmp[3])<<8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/filters/filters.go

    	fault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3"
    	grpcstats "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_stats/v3"
    	grpcweb "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_web/v3"
    	router "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/router/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/sccp.go

    func (t *worklist) propagate(block *Block) {
    	switch block.Kind {
    	case BlockExit, BlockRet, BlockRetJmp, BlockInvalid:
    		// control flow ends, do nothing then
    		break
    	case BlockDefer:
    		// we know nothing about control flow, add all branch destinations
    		t.edges = append(t.edges, block.Succs...)
    	case BlockFirst:
    		fallthrough // always takes the first branch
    	case BlockPlain:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set.go

    var podKind = v1.SchemeGroupVersion.WithKind("Pod")
    
    // StatefulSetController controls statefulsets.
    type StatefulSetController struct {
    	// client interface
    	kubeClient clientset.Interface
    	// control returns an interface capable of syncing a stateful set.
    	// Abstracted out for testing.
    	control StatefulSetControlInterface
    	// podControl is used for patching pods.
    	podControl controller.PodControlInterface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <la:errors property="appValue"/>
                                            <la:textarea styleId="appValue" property="appValue"
                                                         styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    input (control and non-control) is dead, all the outputs (control and
    non-control) are dead as well. For `tf_executor.Merge`, the output is dead only
    when either an input control token is dead or all of the regular inputs are
    dead. For `tf_executor.ControlTrigger`, a live control output is always produced
    even when some control inputs are dead.
    
    ### `tf_executor.graph` Operation
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top