Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for Result (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // set, operand types are set as result types if associated body result types
      // match the operand type (does not change per loop iteration). If operand and
      // body result types are not the same, only handle types are propagated to
      // result types. This is necessary to not incorrectly change result shapes
      // when the While op will have a different result shape. Otherwise operand
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    	result := &statsapi.Summary{
    		Node: statsapi.NodeStats{
    			Rlimit: &statsapi.RlimitStats{
    				MaxPID:                &availablePIDs,
    				NumOfRunningProcesses: &NumberOfRunningProcesses,
    			},
    		},
    		Pods: []statsapi.PodStats{},
    	}
    	for _, podStat := range podStats {
    		result.Pods = append(result.Pods, podStat)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers_test.go

    			t.Errorf("Test case: %s, expected: %v, actual: %v", testName, testCase.result, actual)
    		}
    	}
    }
    
    func TestNodeConditions(t *testing.T) {
    	testCases := map[string]struct {
    		inputs []evictionapi.Threshold
    		result []v1.NodeConditionType
    	}{
    		"empty-list": {
    			inputs: []evictionapi.Threshold{},
    			result: []v1.NodeConditionType{},
    		},
    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.cc

                     parser.parseColonType(type) ||
                     parser.resolveOperands(ops, type, result.operands) ||
                     parser.addTypeToList(type, result.types));
    }
    
    void printOneResultOp(Operation* op, OpAsmPrinter& p) {
      assert(op->getNumResults() == 1 && "op should have one result");
    
      // If not all the operand and result types are the same, just use the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // * Operands and results to assign cond function arguments to op results if
      //   the cond function returns False or equivalent result. If the op is shape
      //   invariant, this does not hold as shapes can differ.
      // * All three pairs using cond inputs, body inputs and results as operand is
      //   a common source for all three.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    			if diff := cmp.Diff(tc.result.tlsContext, ret.tlsContext, protocmp.Transform()); diff != "" {
    				t.Errorf("got diff in tls context: %v", diff)
    			}
    			if !reflect.DeepEqual(tc.result.httpOpts, ret.httpOpts) {
    				t.Errorf("expecting httpopts:\n %+v \nbut got:\n %+v", tc.result.httpOpts, ret.httpOpts)
    			}
    			if !reflect.DeepEqual(tc.result.sniHosts, ret.sniHosts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
       * ClosingFuture<List<Row>> rowsFuture =
       *     queryFuture.transformAsync((closer, result) -> result.getRowsClosingFuture(), executor);
       *
       * // Result.writeRowsToOutputStreamFuture() returns a ListenableFuture that resolves to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (IsConst(&inst)) continue;
    
        // Fetch operand and result tensor indices.
        std::vector<int32_t> results;
        results.reserve(inst.getNumResults());
        for (auto result : inst.getResults()) {
          results.push_back(tensor_index_map.lookup(result));
        }
        Operation* real_inst = &inst;
        std::vector<int32_t> operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      TypeRangeWithDesc results{op.getResultTypes(), "result"};
      TypeRangeWithDesc then_results{then_types, "then result"};
      TypeRangeWithDesc else_results{else_types, "else result"};
    
      if (failed(VerifyTypeRangesAreCompatible(op, then_results, results)))
        return failure();
      if (failed(VerifyTypeRangesAreCompatible(op, else_results, results)))
        return failure();
      return success();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

        public BiMap<V, K> inverse() {
          BiMap<V, K> result = inverse;
          return (result == null)
              ? inverse = new UnmodifiableBiMap<>(delegate.inverse(), this)
              : result;
        }
    
        @Override
        public Set<V> values() {
          Set<V> result = values;
          return (result == null) ? values = Collections.unmodifiableSet(delegate.values()) : result;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top