Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 425 for qint (0.05 sec)

  1. src/crypto/internal/boring/rsa.go

    		}
    	}
    
    	return pkey, ctx, nil
    }
    
    func cryptRSA(withKey func(func(*C.GO_RSA) C.int) C.int,
    	padding C.int, h, mgfHash hash.Hash, label []byte, saltLen int, ch crypto.Hash,
    	init func(*C.GO_EVP_PKEY_CTX) C.int,
    	crypt func(*C.GO_EVP_PKEY_CTX, *C.uint8_t, *C.size_t, *C.uint8_t, C.size_t) C.int,
    	in []byte) ([]byte, error) {
    
    	pkey, ctx, err := setupRSA(withKey, padding, h, mgfHash, label, saltLen, ch, init)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. maven-builder-support/src/main/java/org/apache/maven/building/Source.java

         */
        InputStream getInputStream() throws IOException;
    
        /**
         * Provides a user-friendly hint about the location of the source. This could be a local file path, a URI or just an
         * empty string. The intention is to assist users during error reporting.
         *
         * @return A user-friendly hint about the location of the source, never {@code null}.
         */
        String getLocation();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/runtime/malloc_test.go

    	for i := 0; i < 5; i++ {
    		// Reserve memory at the next hint so it can't be used
    		// for the heap.
    		start, end, ok := MapNextArenaHint()
    		if !ok {
    			t.Skipf("failed to reserve memory at next arena hint [%#x, %#x)", start, end)
    		}
    		t.Logf("reserved [%#x, %#x)", start, end)
    		disallowed = append(disallowed, [2]uintptr{start, end})
    		// Allocate until the runtime tries to use the hint we
    		// just mapped over.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/go/ast/ast_test.go

    var isDirectiveTests = []struct {
    	in string
    	ok bool
    }{
    	{"abc", false},
    	{"go:inline", true},
    	{"Go:inline", false},
    	{"go:Inline", false},
    	{":inline", false},
    	{"lint:ignore", true},
    	{"lint:1234", true},
    	{"1234:lint", true},
    	{"go: inline", false},
    	{"go:", false},
    	{"go:*", false},
    	{"go:x*", true},
    	{"export foo", true},
    	{"extern foo", true},
    	{"expert foo", false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 22:03:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/legalize_tf_quant_test.cc

          } : (tensor<1xf32>, tensor<f32>, tensor<i32>) -> tensor<1x!tf_type.qint8>
          %1 = "tf.UniformDequantize"(%0, %scales, %zps) {
            quantization_axis = -1 : i64, quantization_min_val = -128 : i64, quantization_max_val = 127 : i64
          } : (tensor<1x!tf_type.qint8>, tensor<f32>, tensor<i32>) -> tensor<1xf32>
          func.return %1 : tensor<1xf32>
        }
      })mlir";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 18:43:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt

     * hint for further adapters to process.
     *
     * Types like ANY and CHOICE that don't have a consistent tag cannot use this.
     */
    internal data class BasicDerAdapter<T>(
      private val name: String,
      /** The tag class this adapter expects, or -1 to match any tag class. */
      val tagClass: Int,
      /** The tag this adapter expects, or -1 to match any tag. */
      val tag: Long,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.h

    // quantized. `signature_def_map` connects the signature keys to
    // `SignatureDef`s.
    //
    // Returns a non-OK status when the quantization is not successful.
    // LINT.IfChange
    absl::Status QuantizeWeightOnlyPtq(
        absl::string_view src_saved_model_path,
        absl::string_view dst_saved_model_path,
        ::stablehlo::quantization::QuantizationConfig quantization_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 12:18:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/ParallelismBuildOptions.java

                try {
                    int workerCount = Integer.parseInt(value);
                    if (workerCount < 1) {
                        origin.handleInvalidValue(value, HINT);
                    }
                    settings.setMaxWorkerCount(workerCount);
                } catch (NumberFormatException e) {
                    origin.handleInvalidValue(value, HINT);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

    /**
     * Assists in the handling of model problems.
     *
     */
    public class ModelProblemUtils {
    
        /**
         * Creates a user-friendly source hint for the specified model.
         *
         * @param model The model to create a source hint for, may be {@code null}.
         * @return The user-friendly source hint, never {@code null}.
         */
        static String toSourceHint(Model model) {
            if (model == null) {
                return "";
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. gradle.properties

    android.enableJetifier=true
    android.useAndroidX=true
    kotlin.mpp.stability.nowarn=true
    kotlin.js.compiler=ir
    kotlin.incremental.js.ir=true
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 09:58:21 UTC 2024
    - 343 bytes
    - Viewed (0)
Back to top