Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 228 for Single (0.14 sec)

  1. .bazelrc

    #
    # Other build options:
    #     short_logs:       Only log errors during build, skip warnings.
    #     verbose_logs:     Show all compiler warnings during build.
    #     monolithic:       Build all TF C++ code into a single shared object.
    #     dynamic_kernels:  Try to link all kernels dynamically (experimental).
    #     dbg:              Build with debug info
    #
    # TF version options;
    #     v2: Build TF v2
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	    Setting -parallel to values higher than GOMAXPROCS may cause degraded
    	    performance due to CPU contention, especially when fuzzing.
    	    Note that -parallel only applies within a single test binary.
    	    The 'go test' command may run tests for different packages
    	    in parallel as well, according to the setting of the -p flag
    	    (see 'go help build').
    
    	-run regexp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    func (t *Type) IsUintptr() bool {
    	return t.kind == TUINTPTR
    }
    
    // IsPtrShaped reports whether t is represented by a single machine pointer.
    // In addition to regular Go pointer types, this includes map, channel, and
    // function types and unsafe.Pointer. It does not include array or struct types
    // that consist of a single pointer shaped type.
    // TODO(mdempsky): Should it? See golang.org/issue/15028.
    func (t *Type) IsPtrShaped() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    		{
    			name:      "single service, partial instance",
    			services:  []*model.Service{service},
    			instances: makeInstances(proxy, service, 80, 8080),
    			clusters: map[string][]string{
    				"inbound|8080||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    			},
    		},
    		{
    			name:     "single service, multiple instance",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				{
    					ServicePort: &model.Port{
    						Name:     "tcp-port",
    						Port:     8080,
    						Protocol: "TCP",
    					},
    					TargetPort: 8080,
    				},
    			},
    		},
    		{
    			name: "single proxy ip single port",
    			pods: []*corev1.Pod{pod1},
    			ips:  []string{"128.0.0.1"},
    			ports: []corev1.ServicePort{
    				{
    					Name:       "tcp-port",
    					Port:       8080,
    					Protocol:   "TCP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    //       .Attr("T: type");
    // that defines two inputs, "concat_dim" and "values" (in that order).
    // You must use TF_AddInput() for the first input (since it takes a
    // single tensor), and TF_AddInputList() for the second input (since
    // it takes a list, even if you were to pass a list with a single
    // tensor), as in:
    //   TF_OperationDescription* desc = TF_NewOperation(graph, "Concat", "c");
    //   TF_Output concat_dim_input = {...};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    // could lead to performance degradation. Handling this case is not within the
    // scope of the scavenger. Situations where the amount of fragmentation balloons
    // over the course of a single GC cycle should be considered pathologies,
    // flagged as bugs, and fixed appropriately.
    //
    // An additional factor of retainExtraPercent is added as a buffer to help ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      for (int core = 0; core < num_cores_per_replica; ++core)
        core_to_mapping.emplace_back();
      // Contains all of the outside compiled operations that should be moved to the
      // host using a single `_XlaHostComputeMlir` op.  This should only contain a
      // single op except in the case where some of the input/output shapes are
      // non-static.
      llvm::SmallSetVector<Operation*, 4> clustered_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
            then:
            executedAndNotSkipped(":copy")
    
            when:
            run 'copy'
            then:
            skipped(":copy")
        }
    
        def "single source with include and exclude pattern"() {
            given:
            file("files/sub/a.txt").createFile()
            file("files/sub/dir/b.txt").createFile()
            file("files/sub/ignore/ignore.txt").createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    This technique is primarily necessary for source sets added by language plugins that have yet to be migrated to extensions.
    
    [[kotdsl:multi_project_builds]]
    [[sec:multi_project_builds]]
    == Multi-project builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top