Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for erator (0.31 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. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: DoesNotExist
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
        - key: istio.io/rev
          operator: In
          values:
          - default
      reinvocationPolicy: Never
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top