Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,708 for ControlZ (0.15 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning_preserve_ops.mlir

        tf_executor.fetch %0 : !tf_executor.control
      }
      func.return
    }
    
    // CHECK-LABEL: func @preserve_unreachable_tpu_compilation_result
    func.func @preserve_unreachable_tpu_compilation_result() {
      tf_executor.graph {
        %0 = tf_executor.ControlTrigger {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

               "reserved for the legacy graph export pipeline to maintain expected "
               "invariants. In the case of this pass, that means manually propagating "
               "controls to lifted parallel execute regions to the graph fetch to "
               "ensure the ops execute, as well as determining whether or not the "
               "islands created by this pass should be split after the replicated "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/internal_upstream.go

    package util
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	internalupstream "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/internal_upstream/v3"
    	rawbuffer "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/raw_buffer/v3"
    	metadata "github.com/envoyproxy/go-control-plane/envoy/type/metadata/v3"
    
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 22 21:35:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/wasm/ssa.go

    		switch next {
    		case b.Succs[0].Block():
    			// if false, jump to b.Succs[1]
    			getValue32(s, b.Controls[0])
    			s.Prog(wasm.AI32Eqz)
    			s.Prog(wasm.AIf)
    			s.Br(obj.AJMP, b.Succs[1].Block())
    			s.Prog(wasm.AEnd)
    		case b.Succs[1].Block():
    			// if true, jump to b.Succs[0]
    			getValue32(s, b.Controls[0])
    			s.Prog(wasm.AIf)
    			s.Br(obj.AJMP, b.Succs[0].Block())
    			s.Prog(wasm.AEnd)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    //   order and cannot be executed in parallel.
    // - A control dependency (A,B) means that op A has to be executed before op B.
    //   A is a control predecessor of B, and B is a control successor of A.
    // - The control dependencies provided by side effect analysis are guaranteed to
    //   be sufficient for correct execution but they are not guaranteed to be
    //   minimal (that means, some control dependencies might not be required for
    //   correct execution).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/empty-main.mlir

    // RUN: tf-opt -tf-executor-graph-pruning %s  | FileCheck %s --check-prefix=CONTROL
    
    // CONTROL-LABEL: func @main
    // CONTROL-NEXT:    return
    
    // EXECUTOR-LABEL: func @main
    // EXECUTOR-NEXT:    tf_executor.graph {
    // EXECUTOR-NEXT:      tf_executor.fetch
    // EXECUTOR-NEXT:    }
    // EXECUTOR-NEXT:    return
    
    func.func @main() {
      func.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 342 bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

            .addHeader("Cache-Control: max-age=60")
            .build(),
        )
      }
    
      @Test
      fun maxAgePreferredOverLowerSharedMaxAge() {
        assertFullyCached(
          MockResponse.Builder()
            .addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES))
            .addHeader("Cache-Control: s-maxage=60")
            .addHeader("Cache-Control: max-age=180")
            .build(),
        )
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp

                                        <div class="col-sm-9">
                                            <la:errors property="name"/>
                                            <la:text styleId="name" property="name" styleClass="form-control"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    For instance
    
    	preflight     	Run control-plane pre-flight checks
    	certs         	Generates all PKI assets necessary to establish the control plane
    		/ca             Generates a self-signed Kubernetes CA to provision identities for Kubernetes components
    		/apiserver      Generates an API server serving certificate and key
    		...
    	kubeconfig		Generates all kubeconfig files necessary to establish the control plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
Back to top