Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for composed (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // operand to be used in a failure message.  The type (but not value)
    // of the other operand may affect the format.  This allows us to
    // print a char* as a raw pointer when it is compared against another
    // char* or void*, and print it as a C string when it is compared
    // against an std::string object, for example.
    //
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    template <typename T1, typename T2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. docs/ru/docs/deployment/docker.md

    #### Docker Compose
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * "/square/okhttp/issues/1486" and decompose into a list of segments like `["square", "okhttp",
     * "issues", "1486"]`.
     *
     * This class offers methods to compose and decompose paths by segment. It composes each path
     * from a list of segments by alternating between "/" and the encoded segment. For example the
     * segments `["a", "b"]` build "/a/b" and the segments `["a", "b", ""]` build "/a/b/".
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      //  A  -->  B  -->  C  -->  D  -->  E
      //  g:      g:0     g:0     g:0     g:
      //
      // The example is rewritten to two graphs; one on the host and one to be
      // compiled. The host graph is as follows.
      //
      //  A  -->  Call  -->  E
      //
      // The compiled cluster is as follows.
      //
      //  Arg  --> B  --> C  --> D --> Retval
      class Subgraph {
       public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    )
    
    // NumComponents returns the number of primitive elements that compose t.
    // Struct and array types are flattened for the purpose of counting.
    // All other types (including string, slice, and interface types) count as one element.
    // If countBlank is IgnoreBlankFields, then blank struct fields
    // (and their comprised elements) are excluded from the count.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			},
    			failedNodes: []*v1.Node{},
    			want: []framework.NodeScore{
    				{Name: "node-a", Score: 33}, // +13, compared to maxSkew=1
    				{Name: "node-b", Score: 66}, // +6, compared to maxSkew=1
    				{Name: "node-c", Score: 100},
    				{Name: "node-d", Score: 16}, // +16, compared to maxSkew=1
    			},
    		},
    		{
    			name: "one constraint on node, all 4 nodes are candidates, maxSkew=3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    	"sort"
    	"strings"
    	"unicode"
    )
    
    var (
    	conf         = printer.Config{Mode: printer.SourcePos, Tabwidth: 8}
    	noSourceConf = printer.Config{Tabwidth: 8}
    )
    
    // writeDefs creates output files to be compiled by gc and gcc.
    func (p *Package) writeDefs() {
    	var fgo2, fc io.Writer
    	f := creat(*objDir + "_cgo_gotypes.go")
    	defer f.Close()
    	fgo2 = f
    	if *gccgo {
    		f := creat(*objDir + "_cgo_defun.c")
    		defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # with clang. It does not imply that CUDA support has been enabled.
    alias(
        name = "is_cuda_compiler_clang",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_compiler_clang",
            "@local_config_cuda//cuda:TRUE",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. .bazelrc

    build:dbg --per_file_copt=+tensorflow/core/kernels.*@-g0
    # for now, disable arm_neon. see: https://github.com/tensorflow/tensorflow/issues/33360
    build:dbg --cxxopt -DTF_LITE_DISABLE_X86_NEON
    # AWS SDK must be compiled in release mode. see: https://github.com/tensorflow/tensorflow/issues/37498
    build:dbg --copt -DDEBUG_BUILD
    
    # Config to build TF TPU
    build:tpu --define=with_tpu_support=true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    If the last comment in the function starts with "Output:" then the output
    is compared exactly against the comment (see examples below). If the last
    comment begins with "Unordered output:" then the output is compared to the
    comment, however the order of the lines is ignored. An example with no such
    comment is compiled but not executed. An example with no text after
    "Output:" is compiled, executed, and expected to produce no output.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top