Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for composed (0.14 sec)

  1. src/crypto/x509/x509.go

    	}
    
    	subjectKeyId := template.SubjectKeyId
    	if len(subjectKeyId) == 0 && template.IsCA {
    		// SubjectKeyId generated using method 1 in RFC 5280, Section 4.2.1.2:
    		//   (1) The keyIdentifier is composed of the 160-bit SHA-1 hash of the
    		//   value of the BIT STRING subjectPublicKey (excluding the tag,
    		//   length, and number of unused bits).
    		h := sha1.Sum(publicKeyBytes)
    		subjectKeyId = h[:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    }
    
    // Returns whether `op` or any ancestors of `op` are outside compiled.
    bool HasOutsideCompilationAncestor(Operation* op) {
      while (op) {
        if (op->hasAttr(kXlaOutsideCompilationAttr)) {
          return true;
        }
        op = op->getParentOp();
      }
      return false;
    }
    
    // Returns whether any ancestors of `op` are outside compiled.
    bool HasOutsideCompilationAncestorExclusive(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // operand to be used in a failure message.  The type (but not value)
    // of the other operand may affect the format.  This allows us to
    // print a char* as a raw pointer when it is compared against another
    // char* or void*, and print it as a C string when it is compared
    // against an std::string object, for example.
    //
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    template <typename T1, typename T2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. docs/ru/docs/deployment/docker.md

    #### Docker Compose
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    )
    
    // NumComponents returns the number of primitive elements that compose t.
    // Struct and array types are flattened for the purpose of counting.
    // All other types (including string, slice, and interface types) count as one element.
    // If countBlank is IgnoreBlankFields, then blank struct fields
    // (and their comprised elements) are excluded from the count.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # with clang. It does not imply that CUDA support has been enabled.
    alias(
        name = "is_cuda_compiler_clang",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_compiler_clang",
            "@local_config_cuda//cuda:TRUE",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. .bazelrc

    build:dbg --per_file_copt=+tensorflow/core/kernels.*@-g0
    # for now, disable arm_neon. see: https://github.com/tensorflow/tensorflow/issues/33360
    build:dbg --cxxopt -DTF_LITE_DISABLE_X86_NEON
    # AWS SDK must be compiled in release mode. see: https://github.com/tensorflow/tensorflow/issues/37498
    build:dbg --copt -DDEBUG_BUILD
    
    # Config to build TF TPU
    build:tpu --define=with_tpu_support=true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    If the last comment in the function starts with "Output:" then the output
    is compared exactly against the comment (see examples below). If the last
    comment begins with "Unordered output:" then the output is compared to the
    comment, however the order of the lines is ignored. An example with no such
    comment is compiled but not executed. An example with no text after
    "Output:" is compiled, executed, and expected to produce no output.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            if (deparenthesize(callExpression.calleeExpression) != calleeExpression) return null
            return callExpression
        }
    
        /**
         * For `=` and compound access like `+=`, `-=`, `*=`, `/=`, `%=`, the LHS of the binary expression is not a complete call. Hence we
         * find the containing binary expression and resolve that instead.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                              as a shared library.
    
    // This header defines the following utilities:
    //
    // Macros indicating the current platform (defined to 1 if compiled on
    // the given platform; otherwise undefined):
    //   GTEST_OS_AIX      - IBM AIX
    //   GTEST_OS_CYGWIN   - Cygwin
    //   GTEST_OS_HPUX     - HP-UX
    //   GTEST_OS_LINUX    - Linux
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top