Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for Signatures (0.26 sec)

  1. src/net/http/request.go

    // parseBasicAuth should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname parseBasicAuth
    func parseBasicAuth(auth string) (username, password string, ok bool) {
    	const prefix = "Basic "
    	// Case insensitive prefix match. See Issue 22736.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/time/time.go

    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    func absClock(abs uint64) (hour, min, sec int) {
    	sec = int(abs % secondsPerDay)
    	hour = sec / secondsPerHour
    	sec -= hour * secondsPerHour
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    
    
    Many built-in and custom reports, such as those used by JUnit, implement this interface.
    Plugins compiled against an earlier version of Gradle containing the previous method signature may need to be recompiled to be used with newer versions of Gradle containing the new signature.
    
    ==== Removed external plugin validation plugin
    
    The incubating plugin `ExternalPluginValidationPlugin` has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    var writeBarrier struct {
    	enabled bool    // compiler emits a check of this before calling write barrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        and body of structured control flow (e.g., if and while). The operation
        takes a variable number of operands and produces no results. The number and
        types of inputs must match the signature of the operation that contains the
        region.
      }];
    
      let arguments = (ins Variadic<AnyType>);
    }
    
    def TF_IfRegionOp : TF_Op<"IfRegion",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                       const llvm::SetVector<Value>& outputs,
                                       const std::string& name) {
      // Creates an empty func.FuncOp with a signature compatible with 'inputs'
      // (operands) and 'outputs' (results).
      OpBuilder builder(module);
      auto in_types = GetValueTypes(inputs);
      auto out_types = GetValueTypes(outputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    func (sd *SECURITY_DESCRIPTOR) IsValid() bool {
    	return isValidSecurityDescriptor(sd)
    }
    
    // String returns the SDDL form of the security descriptor, with a function signature that can be
    // used with %v formatting directives.
    func (sd *SECURITY_DESCRIPTOR) String() string {
    	var sddl *uint16
    	err := convertSecurityDescriptorToStringSecurityDescriptor(sd, 1, 0xff, &sddl, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // Records the src of the given edge as a control result of the graph.
        // Used during graph to function conversion to tie control results to
        // the function signature.
        Status RecordControlResult(
            const Edge* edge,
            const absl::flat_hash_map<const Node*, Node*>& node_images);
    
        // Creates a _Retval node for the src node of edge, and add it to results_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *     .build();
         * ```
         *
         * ## TrustManagers on Android are Weird!
         *
         * Trust managers targeting Android must also define a method that has this signature:
         *
         * ```java
         *    @SuppressWarnings("unused")
         *    public List<X509Certificate> checkServerTrusted(
         *        X509Certificate[] chain, String authType, String host) throws CertificateException {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: return %[[CARG0]]
      func.return %arg0 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests PartitionedCall op with no signature change on callee.
    
    // CHECK-LABEL: func @main
    func.func @main() -> () {
      %call = "tf.PartitionedCall"() {f = @callee, config = "", config_proto = "", executor_type = ""} : () -> tensor<i32>
      func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
Back to top