Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for calculateId (0.23 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def e = thrown(AbstractProperty.PropertyQueryException)
            e.message == "Failed to calculate the value of <property>."
            e.cause.message == "broken!"
    
            when:
            property.present
    
            then:
            def e2 = thrown(AbstractProperty.PropertyQueryException)
            e2.message == "Failed to calculate the value of <property>."
            e2.cause.message == "broken!"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | `project.projectDir`
    | A task input or output property or a script variable to capture the result of using `project.projectDir` to calculate the actual parameter.
    
    | `project.buildDir`
    | A task input or output property or a script variable to capture the result of using `project.buildDir` to calculate the actual parameter.
    
    | `project.name`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    func (t *Type) setFields(fields []*Field) {
    	// If we've calculated the width of t before,
    	// then some other type such as a function signature
    	// might now have the wrong type.
    	// Rather than try to track and invalidate those,
    	// enforce that SetFields cannot be called once
    	// t's width has been calculated.
    	if t.widthCalculated() {
    		base.Fatalf("SetFields of %v: width previously calculated", t)
    	}
    	t.wantEtype(TSTRUCT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    type RollingUpdateDeployment struct {
    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding down.
    	// This can not be 0 if MaxSurge is 0.
    	// By default, a fixed value of 1 is used.
    	// Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. src/runtime/map.go

    	return h.flags&sameSizeGrow != 0
    }
    
    // noldbuckets calculates the number of buckets prior to the current map growth.
    func (h *hmap) noldbuckets() uintptr {
    	oldB := h.B
    	if !h.sameSizeGrow() {
    		oldB--
    	}
    	return bucketShift(oldB)
    }
    
    // oldbucketmask provides a mask that can be applied to calculate n % noldbuckets().
    func (h *hmap) oldbucketmask() uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        q_op->replaceAllUsesWith(scast_op);
        return success();
      }
    
      OpSet target_opset_;
    };
    
    // To calculate per-channel scale and offset, weight of depthwise was reshaped
    // to [H, W, 1, InxMul]. After scale and offset has been calculated, this
    // pattern gets called and restores the weight of depthwise back
    // into [H, W, In, Mul]
    class RestoreWeightShapePattern
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // This is because activation clipping which includes 0.0f can be simply
    // omitted from the graph as the lifted function's out_scale and out_zp are
    // already calculated based on the clipped distribution.
    // Note that the resulting scale and zero point should be calculated based on
    // clipped range [0, r_max].
    
    module attributes {tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
    
            private ClassDetails getDetailsForClass(Class<?> type) {
                ClassDetails classDetails = classes.get(type);
                if (classDetails == null) {
                    // Multiple thread may calculate this at the same time, which is ok. All threads should end up with the same details object
                    ClassDetails newDetails = new ClassDetails(type);
                    classDetails = classes.putIfAbsent(type, newDetails);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top