Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for pcount (0.24 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            then:
            output.count("> Transform lib1.jar (project :lib) with MakeBlueToGreenThings") == 1
            output.count("> Transform lib2.jar (project :lib) with MakeBlueToGreenThings") == 1
            output.count("> Transform lib1.jar (project :lib) with MakeGreenToYellowThings") == 1
            output.count("> Transform lib2.jar (project :lib) with MakeGreenToYellowThings") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            then:
            output.count("Creating Transform") == 2
            output.count("Transforming") == 2
            output.count("Transforming jar1.jar to jar1.jar.txt with count 1") == 1
            output.count("Transforming jar2.jar to jar2.jar.txt with count 1") == 1
            outputContains("files: [jar1.jar.txt, jar2.jar.txt]")
    
            when:
            succeeds "queryView"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    						},
    						Count: 1,
    						Check: check.And(
    							check.OK(),
    							check.ResponseHeader("Access-Control-Allow-Origin", "cors.com")),
    					}
    				}(),
    			},
    			{
    				// GET without matching origin
    				name: "get no origin match",
    				opts: echo.CallOptions{
    					Port: echo.Port{
    						Name: "http",
    					},
    					Count: 1,
    					Check: check.And(
    						check.OK(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

                    setValue(e, key, value, now);
                    newCount = this.count; // count remains unchanged
                  } else {
                    setValue(e, key, value, now);
                    newCount = this.count + 1;
                  }
                  this.count = newCount; // write-volatile
                  evictEntries(e);
                  return null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

                    setValue(e, key, value, now);
                    newCount = this.count; // count remains unchanged
                  } else {
                    setValue(e, key, value, now);
                    newCount = this.count + 1;
                  }
                  this.count = newCount; // write-volatile
                  evictEntries(e);
                  return null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	if obj.LastTimestamp.IsZero() {
    		lastTimestamp = firstTimestamp
    	}
    
    	count := obj.Count
    	if obj.Series != nil {
    		lastTimestamp = translateMicroTimestampSince(obj.Series.LastObservedTime)
    		count = obj.Series.Count
    	} else if count == 0 {
    		// Singleton events don't have a count set in the new API.
    		count = 1
    	}
    
    	var target string
    	if len(obj.InvolvedObject.Name) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    int64_t L2NormalizationOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      // Computing the squared L2 norm is N multiply-adds so 2N ops,
      // then the single inverse-sqrt is negligible, then we multiply each
      // value by the resulting multiplier, so an extra N ops. count 3N ops.
      if (ArithmeticCountUtilHelper::GetFirstOutputCount(op, &count)) {
        return 3 * count;
      }
    
      return -1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    				LastTimestamp:  metav1.Time{Time: time.Now().UTC().AddDate(0, 0, -2)},
    				Count:          6,
    				Type:           api.EventTypeWarning,
    				ObjectMeta:     metav1.ObjectMeta{Name: "event2"},
    			},
    			options: printers.GenerateOptions{Wide: true},
    			// Columns: Last Seen, Type, Reason, Object, Subobject, Message, First Seen, Count, Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

        if (edge->src_output() == oper_out.index) {
          if (count < max_consumers) {
            consumers[count] = {ToOperation(edge->dst()), edge->dst_input()};
          }
          ++count;
        }
      }
      return count;
    }
    
    int TF_OperationNumControlInputs(TF_Operation* oper) {
      int count = 0;
      for (const auto* edge : oper->node.in_edges()) {
        if (edge->IsControlEdge() && !edge->src()->IsSource()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    		}
    		sm.Queued.Avg.Bytes += peer.Queued.Avg.Bytes
    		sm.Queued.Avg.Count += peer.Queued.Avg.Count
    		sm.Queued.Curr.Bytes += peer.Queued.Curr.Bytes
    		sm.Queued.Curr.Count += peer.Queued.Curr.Count
    		if peer.Queued.Max.Count > sm.Queued.Max.Count {
    			sm.Queued.Max.Bytes = peer.Queued.Max.Bytes
    			sm.Queued.Max.Count = peer.Queued.Max.Count
    		}
    		sm.ReplicaCount += peer.ReplicaCount
    		sm.ReplicaSize += peer.ReplicaSize
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top