Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 165 for constructorsOf (0.23 sec)

  1. tensorflow/cc/client/client_session.h

    ///     if (!s.ok()) { ... }
    class ClientSession {
     public:
      /// A data type to represent feeds to a Run call.
      ///
      /// This is a map of `Output` objects returned by op-constructors to the value
      /// to feed them with. See `Input::Initializer` for details on what can be
      /// used as feed values.
      typedef std::unordered_map<Output, Input::Initializer, OutputHash> FeedType;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/doc/pkg.go

    // typeSummary prints a one-line summary for each type, followed by its constructors.
    func (pkg *Package) typeSummary() {
    	for _, typ := range pkg.doc.Types {
    		for _, spec := range typ.Decl.Specs {
    			typeSpec := spec.(*ast.TypeSpec) // Must succeed.
    			if isExported(typeSpec.Name.Name) {
    				pkg.Printf("%s\n", pkg.oneLineNode(typeSpec))
    				// Now print the consts, vars, and constructors.
    				for _, c := range typ.Consts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

     */
    internal fun FirCallableSymbol<*>.computeImportableName(useSiteSession: FirSession): FqName? {
        if (callableId.isLocal) return null
    
        // SAM constructors are synthetic, but can be imported
        if (origin is FirDeclarationOrigin.SamConstructor) return callableId.asSingleFqName()
    
        // if classId == null, callable is topLevel
        val containingClassId = callableId.classId
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleSource.java

     *
     * <h3>General class constraints</h3>
     * <p>
     * Along with the constraints on individual rule methods by their associated annotation, the following are general constraints of rule source implementations:
     * <ul>
     * <li>Constructors are not allowed.</li>
     * <li>Inheritance hierarchies are not allowed (i.e. all rules sources must directly extend {@link RuleSource}).</li>
     * <li>Instance variables are not allowed.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        /**
         * Phases of the compiler to log.
         * Legal values: namer, typer, pickler, uncurry, tailcalls, transmatch, explicitouter, erasure,
         *               lambdalift, flatten, constructors, mixin, icode, jvm, terminal.
         */
        @Console
        public List<String> getLoggingPhases() {
            return loggingPhases;
        }
    
        public void setLoggingPhases(List<String> loggingPhases) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/NullPointerTester.java

    /**
     * A test utility that verifies that your methods and constructors throw {@link
     * NullPointerException} or {@link UnsupportedOperationException} whenever null is passed to a
     * parameter whose declaration or type isn't annotated with an annotation with the simple name
     * {@code Nullable}, {@code CheckForNull}, {@code NullableType}, or {@code NullableDecl}.
     *
     * <p>The tested methods and constructors are invoked -- each time with one parameter being null and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *
       * <ul>
       *   <li>The non-private constructor or non-private static factory method with the most parameters
       *       is used to construct the sample instances. In case of tie, the candidate constructors or
       *       factories are tried one after another until one can be used to construct sample
       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

            scope.getCallableSymbols().toList().renderAll("callables") { prettyRenderDeclaration(it) }
            scope.getConstructors().toList().renderAll("constructors") { prettyRenderDeclaration(it) }
        }
    
        private fun prettyRenderPackage(symbol: KaPackageSymbol): String =
            symbol.fqName.asString()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/tables.go

    type nafLookupTable5 struct {
    	points [8]projCached
    }
    
    // A precomputed lookup table for fixed-base, variable-time scalar muls.
    type nafLookupTable8 struct {
    	points [64]affineCached
    }
    
    // Constructors.
    
    // Builds a lookup table at runtime. Fast.
    func (v *projLookupTable) FromP3(q *Point) {
    	// Goal: v.points[i] = (i+1)*Q, i.e., Q, 2Q, ..., 8Q
    	// This allows lookup of -8Q, ..., -Q, 0, Q, ..., 8Q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

    /**
     * A test utility that verifies that your methods and constructors throw {@link
     * NullPointerException} or {@link UnsupportedOperationException} whenever null is passed to a
     * parameter whose declaration or type isn't annotated with an annotation with the simple name
     * {@code Nullable}, {@code CheckForNull}, {@code NullableType}, or {@code NullableDecl}.
     *
     * <p>The tested methods and constructors are invoked -- each time with one parameter being null and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top