Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for isIntermediate (0.23 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginAuxclasspathIntegrationTest.groovy

            includeProject("intermediate")
            buildFile << """
                project("intermediate") {
                    dependencies {
                        $dependency
                    }
                }
            """.stripIndent()
    
            file("intermediate/src/main/java/org/gradle/intermediate/IntermediateClass.java") << """
            package org.gradle.intermediate;
    
            public class IntermediateClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt

        val root =
          HeldCertificate.Builder()
            .certificateAuthority(1)
            .build()
        val intermediate =
          HeldCertificate.Builder()
            .certificateAuthority(0)
            .signedBy(root)
            .build()
        val certificate =
          HeldCertificate.Builder()
            .signedBy(intermediate)
            .build()
        val handshakeCertificates =
          HandshakeCertificates.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

        elem_type = mlir::IntegerType::get(elem_type.getContext(),
                                           elem_type.getIntOrFloatBitWidth());
      }
    
      // Intermediate tensors with calibration value (but not scale and zero points)
      // should return calibrated quantized type.
      if (is_intermediate && tensor.quantization != nullptr &&
          !IsQuantized(tensor)) {
        TF_ASSIGN_OR_RETURN(elem_type, GetCalibratedQuantizedType(tensor, builder));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. tests/integration/ambient/cacert_rotation_test.go

    	if err != nil {
    		t.Errorf("failed to decode intermediate certificate: %v", err)
    	}
    	intermediateX509 := parseCert(t, intermediateCert)
    	// verify the correct intermediate cert is in the certificate chain
    	if intermediateX509.SerialNumber.String() != caX590.SerialNumber.String() {
    		return fmt.Errorf("intermediate certificate serial numbers do not match: got %v, wanted %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                                 /*is_constant=*/false, /*is_intermediate=*/true));
          intermediate_types.emplace_back(type);
        }
    
        auto op_loc = OpLoc(*op, subgraph.tensors, builder, base_loc);
    
        // If there's an optional argument, maybe_optional_arg_marker has been set
        // to a valid Value
        TF_ASSIGN_OR_RETURN(
            auto* mlir_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

    import org.gradle.tooling.provider.model.UnknownModelException
    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    import org.gradle.util.Path
    
    
    /**
     * Responsible for loading and storing intermediate models used during tooling API build action execution.
     */
    internal
    class IntermediateModelController(
        private val host: DefaultConfigurationCache.Host,
        private val cacheIO: ConfigurationCacheIO,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/run_passes.h

    // only argument. `name` identifies the set of passes added by `add_passes_func`
    // and is used for debugging. Changing the `name` does not modify the behavior
    // of the passes.
    //
    // It will try to dump intermediate MLIRs if certain conditions are met. See the
    // description from `MaybeEnableIrPrinting` for the details about the
    // conditions.
    //
    // Returns a non-OK status when the pass run fails or it fails to create an MLIR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256block_s390x.s

    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $2, R0                       // SHA-256 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  9. src/crypto/sha512/sha512block_s390x.s

    	MOVBZ  ·useAsm(SB), R4
    	LMG    dig+0(FP), R1, R3            // R2 = &p[0], R3 = len(p)
    	MOVBZ  $3, R0                       // SHA-512 function code
    	CMPBEQ R4, $0, generic
    
    loop:
    	KIMD R0, R2      // compute intermediate message digest (KIMD)
    	BVS  loop        // continue if interrupted
    	RET
    
    generic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 610 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    _Description_: *Learn to configure builds, create tasks, and write plugins.* +
    _Training level_: **Intermediate** +
    _Reading time_: **35 minutes** +
    <<gradle_directories.adoc#gradle_directories,-> Read Core Concepts >>
    
    === 2. Hands-on Tutorial
    
    [sidebar]
    _Description_: *Initialize a Gradle project and create a basic plugin.* +
    _Training level_: **Intermediate** +
    _Training time_: **55 minutes** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top