Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for NResults (0.42 sec)

  1. pkg/printers/internalversion/printers.go

    		lbIps := loadBalancerStatusStringer(svc.Status.LoadBalancer, wide)
    		if len(svc.Spec.ExternalIPs) > 0 {
    			results := []string{}
    			if len(lbIps) > 0 {
    				results = append(results, strings.Split(lbIps, ",")...)
    			}
    			results = append(results, svc.Spec.ExternalIPs...)
    			return strings.Join(results, ",")
    		}
    		if len(lbIps) > 0 {
    			return lbIps
    		}
    		return "<pending>"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    template <typename ValueT, typename... RangeTs>
    llvm::SmallVector<ValueT, 4> Concat(RangeTs&&... ranges) {
      llvm::SmallVector<int64_t, 4> results;
      results.reserve(Size(std::forward<RangeTs>(ranges)...));
      Append(results, std::forward<RangeTs>(ranges)...);
      return results;
    }
    
    // A struct to hold axes and sizes for a set of dimensions.
    struct DimensionVector {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_SEARCH = "{labels.search}";
    
        /** The key of the message: Similar results are displayed. */
        public static final String LABELS_similar_doc_result_status = "{labels.similar_doc_result_status}";
    
        /** The key of the message: Results &lt;b&gt;{2}&lt;/b&gt;&lt;span class="hidden-phone"&gt; -&lt;/span&gt; &lt;b&gt;{3}&lt;/b&gt; of &lt;b&gt;{1}&lt;/b&gt; for &lt;b&gt;{0}&lt;/b&gt; */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      // Tests only directly used results of tpu cluster are remapped with
      // parallel_execute.
    
      // CHECK-LABEL: func @remapped_results
      func.func @remapped_results(%arg0: tensor<2xi32>) -> tensor<2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          return std::nullopt;
        }
    
        const PartialTensorShape shape = shapes[e->src_output()];
        if (!shape.IsFullyDefined()) {
          return std::nullopt;
        }
    
        results[e->dst_input()] = shape;
      }
      return results;
    }
    
    string host_compute_node_name(const string& original_oc_name) {
      return absl::StrCat("outside_compilation_", original_oc_name,
                          "_host_compute");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	s.mu.Lock()
    	s.css = append(s.css, cs)
    	s.mu.Unlock()
    	return cs.ds, nil
    }
    
    // QueryContext executes a prepared query statement with the given arguments
    // and returns the query results as a [*Rows].
    func (s *Stmt) QueryContext(ctx context.Context, args ...any) (*Rows, error) {
    	s.closemu.RLock()
    	defer s.closemu.RUnlock()
    
    	var rowsi driver.Rows
    	var rows *Rows
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// of completing higher-level actions. The order of
    	// work does not matter much to overall execution time,
    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    	return nil
    }
    
    // Netperf for site-replication net perf
    func (c *SiteReplicationSys) Netperf(ctx context.Context, duration time.Duration) (results madmin.SiteNetPerfResult, err error) {
    	infos, err := globalSiteReplicationSys.GetClusterInfo(ctx)
    	if err != nil {
    		return results, err
    	}
    	var wg sync.WaitGroup
    	var resultsMu sync.RWMutex
    	for _, info := range infos.Sites {
    		info := info
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. cmd/server_test.go

    	c.Assert(response.StatusCode, http.StatusOK)
    
    	var results ListBucketsResponse
    	// parse the list bucket response.
    	decoder := xml.NewDecoder(response.Body)
    	err = decoder.Decode(&results)
    	// validating that the xml-decoding/parsing was successful.
    	c.Assert(err, nil)
    
    	// Fetch the bucket created above
    	var createdBucket Bucket
    	for _, b := range results.Buckets.Buckets {
    		if b.Name == bucketName {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    				},
    			},
    			err: nil,
    			deletableResources: map[schema.GroupVersionResource]struct{}{
    				{Group: "apps", Version: "v1", Resource: "pods"}: {},
    			},
    		},
    		"nonspecific failure, includes usable results": {
    			serverResources: []*metav1.APIResourceList{
    				{
    					GroupVersion: "apps/v1",
    					APIResources: []metav1.APIResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top