Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 249 for pcount (0.1 sec)

  1. guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        Multiset<E> delegate() {
          return (Multiset<E>) super.delegate();
        }
    
        @Override
        public int count(@CheckForNull Object o) {
          synchronized (mutex) {
            return delegate().count(o);
          }
        }
    
        @Override
        public int add(@ParametricNullness E e, int n) {
          synchronized (mutex) {
            return delegate().add(e, n);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    	var yval constant.Value
    	if y.mode == constant_ {
    		// Provide a good error message for negative shift counts.
    		yval = constant.ToInt(y.val) // consider -1, 1.0, but not -1.1
    		if yval.Kind() == constant.Int && constant.Sign(yval) < 0 {
    			check.errorf(y, InvalidShiftCount, invalidOp+"negative shift count %s", y)
    			x.mode = invalid
    			return
    		}
    
    		if isUntyped(y.typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/time/time_test.go

    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Skip("skipping; GOMAXPROCS>1")
    	}
    	for _, mt := range mallocTest {
    		allocs := int(testing.AllocsPerRun(100, mt.fn))
    		if allocs > mt.count {
    			t.Errorf("%s: %d allocs, want %d", mt.desc, allocs, mt.count)
    		}
    	}
    }
    
    func TestLoadFixed(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    bool HasDynamicOutputs(const llvm::SmallSetVector<Operation*, 4>& cluster_ops) {
      for (Operation* op : cluster_ops) {
        for (const OpOperand& use : op->getUses()) {
          if (cluster_ops.count(use.getOwner())) {
            continue;
          }
          if (mlir::TF::CanBeRefined(use.get().getType())) return true;
        }
      }
      return false;
    }
    
    bool HasDynamicExternalValues(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    	return nil
    }
    
    func (p *mockPolicy) GetPodTopologyHints(s state.State, pod *v1.Pod) map[string][]topologymanager.TopologyHint {
    	return nil
    }
    
    // GetAllocatableMemory returns the amount of allocatable memory for each NUMA node
    func (p *mockPolicy) GetAllocatableMemory(s state.State) []state.Block {
    	return []state.Block{}
    }
    
    type mockRuntimeService struct {
    	err error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        llvm::SmallVectorImpl<Type> *updated_types) {
      int i = 0;
      for (const auto it : llvm::zip(types, range, operands)) {
        if (tensor_list_index.count(i)) {
          // Only change the tensorlist's type to unranked tensor if it has been
          // resized.
          if (resized_tensor_list_index.count(i)) {
            updated_types->push_back(
                VariantToUnrankedTensorType(std::get<0>(it), std::get<1>(it)));
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    			t.Go = c.Opaque(t.Size)
    			break
    		}
    		count := dt.Count
    		if count == -1 {
    			// Indicates flexible array member, which Go doesn't support.
    			// Translate to zero-length array instead.
    			count = 0
    		}
    		sub := c.Type(dt.Type, pos)
    		t.Align = sub.Align
    		t.Go = &ast.ArrayType{
    			Len: c.intExpr(count),
    			Elt: sub.Go,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    	},
    	ErrAccountNotEligible: {
    		Code:           "XMinioInvalidIAMCredentials",
    		Description:    "The account key is not eligible for this operation",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrAdminServiceAccountNotFound: {
    		Code:           "XMinioInvalidIAMCredentials",
    		Description:    "The specified service account is not found",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrPostPolicyConditionInvalidFormat: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	merged.Merge(r)
    	merged.Merge(other)
    
    	return merged
    }
    
    func (r ReasonStats) Count() int {
    	var ret int
    	for _, count := range r {
    		ret += count
    	}
    	return ret
    }
    
    func (r ReasonStats) Has(reason TriggerReason) bool {
    	return r[reason] > 0
    }
    
    type TriggerReason string
    
    // If adding a new reason, update xds/monitoring.go:triggerMetric
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// health signal updated from kubelet. There are 2 kinds of node healthiness
    	// signals: NodeStatus and NodeLease. If it doesn't receive update for this amount
    	// of time, it will start posting "NodeReady==ConditionUnknown". The amount of
    	// time before which Controller start evicting pods is controlled via flag
    	// 'pod-eviction-timeout'.
    	// Note: be cautious when changing the constant, it must work with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top