Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,364 for ControlZ (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/log/options.go

    	// older than 30 days.
    	RotationMaxAge int
    
    	// RotationMaxBackups is the maximum number of old log files to retain.  The default
    	// is to retain at most 1000 logs.
    	RotationMaxBackups int
    
    	// JSONEncoding controls whether the log is formatted as JSON.
    	JSONEncoding bool
    
    	// logGRPC indicates that Grpc logs should be captured.
    	// This is enabled by a --log_output_level=grpc:<level> typically
    	logGRPC bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    LogicalResult IslandOp::fold(FoldAdaptor,
                                 llvm::SmallVectorImpl<OpFoldResult> &results) {
      // This folds IslandOps with no inner ops, one control operand and no data
      // results. The single control operand is forwarded to the IslandOp control
      // result users.
      if (getNumOperands() != 1 || getNumResults() != 1 ||
          !HasSingleOpInBlock<YieldOp>(&GetBody()))
        return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    		- 'crictl --runtime-endpoint {{ .Socket }} logs CONTAINERID'
    	`)))
    )
    
    // 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",
    		Short: "Wait for the control plane to start",
    		// TODO: unhide this phase once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/preflight.go

    // joining an additional control plane instance and if the node is ready to preflight
    func checkIfReadyForAdditionalControlPlane(initConfiguration *kubeadmapi.ClusterConfiguration, hasCertificateKey bool) error {
    	// blocks if the cluster was created without a stable control plane endpoint
    	if initConfiguration.ControlPlaneEndpoint == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. operator/cmd/mesh/uninstall.go

    		Long:  "The uninstall command uninstalls Istio from a cluster",
    		Example: `  # Uninstall a single control plane by revision
      istioctl uninstall --revision foo
    
      # Uninstall a single control plane by iop file
      istioctl uninstall -f iop.yaml
      
      # Uninstall all control planes and shared resources
      istioctl uninstall --purge`,
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    		URL. See https://golang.org/ref/mod#authenticating.
    	GOTOOLCHAIN
    		Controls which Go toolchain is used. See https://go.dev/doc/toolchain.
    	GOTMPDIR
    		The directory where the go command will write
    		temporary source files, packages, and binaries.
    	GOVCS
    		Lists version control commands that may be used with matching servers.
    		See 'go help vcs'.
    	GOWORK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. manifests/charts/README.md

    ### Install Control plane
    
    This can run in any cluster. A mesh should have at least one cluster should run Pilot or equivalent XDS server,
    and it is recommended to have Pilot running in each region and in multiple availability zones for multi cluster.
    
    ```bash
    iop istio-control istio-discovery $IBASE/istio-control/istio-discovery \
                --set global.istioNamespace=istio-system
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top