Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for beforeSend (0.12 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            e.message == "Cannot query the value of <display> because <reason>."
    
            and:
            1 * host.beforeRead(null) >> "<reason>"
            0 * _
    
            when:
            def result = collection.files
    
            then:
            result == [file] as Set
    
            and:
            1 * host.beforeRead(null) >> null
            1 * fileResolver.resolve('a') >> file
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            1 * host.beforeRead(null) >> "<reason>"
    
            and:
            def e = thrown(IllegalStateException)
            e.message == "Cannot query the value of this property because <reason>."
    
            when:
            property.attachOwner(owner(), displayName("<display-name>"))
            property.get()
    
            then:
            1 * host.beforeRead(null) >> "<reason>"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			schemaGenerator: func(max *int64) *schema.Structural {
    				strType := withMaxLength(primitiveType("string", ""), max)
    				beforeLen := int64(2)
    				afterLen := int64(4)
    				objType := objectType(map[string]schema.Structural{
    					"str":    strType,
    					"before": withMaxLength(primitiveType("string", ""), &beforeLen),
    					"after":  withMaxLength(primitiveType("string", ""), &afterLen),
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                                        METHOD_STATIC_RANGE_WEIGHT_ONLY_INT8) {
          // Skipping input type check for weight-only quantization as it can be
          // dequantized beforehand for the legacy scheme.
          has_quantized_types = true;
        } else {
          // Determines if all required float input/outputs are now quantized.
          // Either one of the criteria needs to meet.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ----
    ====
    
    You can of course just add an explicit task dependency via `dependsOn`, but the above approach provides more semantic meaning, explaining why `compileJava` has to run beforehand.
    
    [[sec:disable-state-tracking]]
    === Disabling up-to-date checks
    
    Gradle automatically handles up-to-date checks for output files and directories, but what if the task output is something else entirely?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top