Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for erator (0.17 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        // current[i]_ is the actual traversing iterator.
        const typename ParamGenerator<T1>::iterator begin1_;
        const typename ParamGenerator<T1>::iterator end1_;
        typename ParamGenerator<T1>::iterator current1_;
        const typename ParamGenerator<T2>::iterator begin2_;
        const typename ParamGenerator<T2>::iterator end2_;
        typename ParamGenerator<T2>::iterator current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    				{
    					Signal:   evictionapi.SignalAllocatableMemoryAvailable,
    					Operator: evictionapi.OpLessThan,
    					Value: evictionapi.ThresholdValue{
    						Quantity: quantityMustParse("150Mi"),
    					},
    					MinReclaim: &evictionapi.ThresholdValue{
    						Quantity: quantityMustParse("0"),
    					},
    				},
    				{
    					Signal:   evictionapi.SignalMemoryAvailable,
    					Operator: evictionapi.OpLessThan,
    					Value: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      // for a pooling operator). Not all operations have Options and some
      // operations share Options. The following attributes indicate whether
      // the operation has Options in the serialized FlatBuffer.
    
      // Whether the TFLite operator has options in the schema representation.
      bit hasOptions = 0b0;
      // Whether the TFLite operator has options2 in the schema representation.
      bit hasOptions2 = 0b0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Build call once operator.
      BufferOffset<tflite::Operator> BuildCallOnceOperator(
          mlir::TFL::CallOnceOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      BufferOffset<tflite::Operator> BuildNumericVerifyOperator(
          mlir::TFL::NumericVerifyOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      BufferOffset<tflite::Operator> BuildCustomOperator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        Iterator<Entry<K, V>> entryIterator() {
          return Iterators.filter(unfiltered.entrySet().iterator(), entryPredicate);
        }
    
        @Override
        Iterator<Entry<K, V>> descendingEntryIterator() {
          return Iterators.filter(unfiltered.descendingMap().entrySet().iterator(), entryPredicate);
        }
    
        @Override
        public int size() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        Iterator<Entry<K, V>> entryIterator() {
          return Iterators.filter(unfiltered.entrySet().iterator(), entryPredicate);
        }
    
        @Override
        Iterator<Entry<K, V>> descendingEntryIterator() {
          return Iterators.filter(unfiltered.descendingMap().entrySet().iterator(), entryPredicate);
        }
    
        @Override
        public int size() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/eviction_manager_test.go

    				if synchErr == nil && tc.expectErr != "" {
    					t.Fatalf("Manager should report error but did not")
    				} else if tc.expectErr != "" && synchErr != nil {
    					if diff := cmp.Diff(tc.expectErr, synchErr.Error()); diff != "" {
    						t.Errorf("Unexpected error (-want,+got):\n%s", diff)
    					}
    				} else {
    					// verify manager detected disk pressure
    					if !manager.IsUnderDiskPressure() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation_test.go

    			if tc.wantError == nil && gotErr != nil {
    				t.Errorf("unexpected error: %s", gotErr)
    			} else if tc.wantError != nil && gotErr == nil {
    				t.Errorf("missing error: %s", tc.wantError)
    			} else if tc.wantError != nil && gotErr != nil {
    				if diff := cmp.Diff(tc.wantError.Error(), gotErr.Error()); diff != "" {
    					t.Errorf("unexpected error, diff: %s", diff)
    				}
    			}
    			if tc.wantTotal != gotTotal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/strategy_test.go

    			if tc.job == nil {
    				_, _, err := GetAttrs(tc.nonJobObject)
    				if diff := cmp.Diff(tc.wantErr, err.Error()); diff != "" {
    					t.Errorf("Unexpected errors (-want,+got):\n%s", diff)
    				}
    			} else {
    				gotLabels, _, err := GetAttrs(tc.job)
    				if err != nil {
    					t.Errorf("Error %s supposed to be nil", err.Error())
    				}
    				if diff := cmp.Diff(labels.Set(tc.job.ObjectMeta.Labels), gotLabels); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    }
    
    // Operator is an operator.
    type Operator struct {
    	Name       string
    	precedence precedence
    }
    
    func (op *Operator) print(ps *printState) {
    	ps.writeString("operator")
    	if isLower(op.Name[0]) {
    		ps.writeByte(' ')
    	}
    	n := op.Name
    	n = strings.TrimSuffix(n, " ")
    	ps.writeString(n)
    }
    
    func (op *Operator) Traverse(fn func(AST) bool) {
    	fn(op)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top