Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for central (0.19 sec)

  1. tensorflow/c/c_api_test.cc

      EXPECT_EQ(feed2, control_inputs[1]);
    
      // Export to a graph def so we can import a graph with control dependencies
      TF_DeleteBuffer(graph_def);
      graph_def = TF_NewBuffer();
      TF_GraphToGraphDef(graph, graph_def, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Import again, with remapped control dependency, into the same graph
      TF_DeleteImportGraphDefOptions(opts);
      opts = TF_NewImportGraphDefOptions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                      TTL for an incoming BFD control packet.'
                    format: int32
                    maximum: 254
                    minimum: 1
                    type: integer
                  passiveMode:
                    description: 'Mark session as passive: a passive session will not
                      attempt to start the connection and will wait for control packets
                      from peer before it begins replying.'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    ```
    mc mb myminio/images
    mc event add myminio/images arn:minio:sqs::1:amqp --suffix .jpg
    mc event list myminio/images
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    		if strings.ToLower(a[i]) == hwidLC {
    			return true
    		}
    	}
    
    	return false
    }
    
    // DICD flags control SetupDiCreateDeviceInfo
    type DICD uint32
    
    const (
    	DICD_GENERATE_ID       DICD = 0x00000001
    	DICD_INHERIT_CLASSDRVS DICD = 0x00000002
    )
    
    // SUOI flags control SetupUninstallOEMInf
    type SUOI uint32
    
    const (
    	SUOI_FORCEDELETE SUOI = 0x0001
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// compare-and-branch (register-register)
    		//  - integrates comparison of Controls[0] with Controls[1]
    		//  - both control values must be in general purpose registers
    		{name: "CRJ", controls: 2, aux: "S390XCCMask"},   // signed 32-bit integer comparison
    		{name: "CGRJ", controls: 2, aux: "S390XCCMask"},  // signed 64-bit integer comparison
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    	}
    	if g, e := res.Header.Get("Last-Modified"), ""; g != e {
    		t.Errorf("got last-modified = %q, want %q", g, e)
    	}
    	if g, e := res.Header.Get("Cache-Control"), ""; g != e {
    		t.Errorf("got cache-control = %q, want %q", g, e)
    	}
    	if g, e := res.Header.Get("Content-Range"), "bytes */7"; g != e {
    		t.Errorf("got content-range = %q, want %q", g, e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    	count := 0
    
    	// print all list elements
    	prevLine := prev.Line
    	for i, x := range list {
    		line = p.lineFor(x.Pos())
    
    		// Determine if the next linebreak, if any, needs to use formfeed:
    		// in general, use the entire node size to make the decision; for
    		// key:value expressions, use the key size.
    		// TODO(gri) for a better result, should probably incorporate both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
    
        // The size of the cluster excluding constant and identity nodes.
        int effective_cluster_size() const { return effective_cluster_size_; }
    
        // True if the cluster has functional control flow like `If` and `While`.
        bool has_functional_control_flow() const {
          return has_functional_control_flow_;
        }
    
        // The set of devices nodes in the cluster are placed on.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

    // RUN: tf-opt %s -tf-merge-control-flow | FileCheck %s
    
    // Check that IfRegions with different predicates are not merged.
    
    // CHECK-LABEL: func @different_predicate_no_merge
    func.func @different_predicate_no_merge() {
      // CHECK:      tf_device.cluster
      // CHECK:        "tf.IfRegion"
      // CHECK:        "tf.IfRegion"
      "tf_device.cluster"() ({
        %0 = "tf.Const"() {value = dense<true> : tensor<i1>} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      func.return %arg1 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests that the pass returns meaningful error message when region based
    // control flow op has resource arguments.
    func.func @main() -> () {
      %size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
Back to top