Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for currentValue (0.6 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

                read(decoder)
            }
            store.createValueStore(stateType, writer, reader)
        }
    
        private
        val previousValues = ConcurrentHashMap<K, BlockAddress>()
    
        private
        val currentValues = ConcurrentHashMap<K, CalculatedValueContainer<BlockAddress, *>>()
    
        protected
        abstract fun projectPathForKey(key: K): Path?
    
        protected
        abstract fun write(encoder: Encoder, value: V)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"),
    						},
    					},
    					"currentValue": {
    						SchemaProps: spec.SchemaProps{
    							Description: "currentValue is the current value of the metric (as a quantity)",
    							Ref:         ref("k8s.io/apimachinery/pkg/api/resource.Quantity"),
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      // doesn't depends on any ops below it.
      std::stack<Operation*> op_stack;
      while (!value_queue.empty()) {
        Value current_value = value_queue.front();
        value_queue.pop();
    
        Operation* defining_node = current_value.getDefiningOp();
        if (defining_node == nullptr) continue;
        op_stack.push(defining_node);
        for (Value arg : defining_node->getOperands()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top