Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pseudocode (0.27 sec)

  1. .idea/dictionaries/abreslav.xml

          <w>covariantly</w>
          <w>deserialized</w>
          <w>dominator</w>
          <w>inferrer</w>
          <w>iterable</w>
          <w>nondeterministic</w>
          <w>nullable</w>
          <w>overridable</w>
          <w>pseudocode</w>
          <w>substitutor</w>
          <w>subtyping</w>
          <w>supertype</w>
          <w>supertypes</w>
          <w>tuple</w>
          <w>unary</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jul 09 13:32:24 UTC 2015
    - 500 bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDestructuringDeclarationSymbol.kt

         * ```
         * data class X(val y: Int, val z: String)
         * fun foo() {
         *      val (a, _) = x // the destruction
         * }
         * ```
         *
         * the following symbols will be created (pseudocode)
         * ```
         * val a: Int
         * val _: String
         * ```
         */
        public abstract val entries: List<KaVariableSymbol>
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

     * intended for use in Internationalized Domain Names (IDNs).
     *
     * This class contains a Kotlin implementation of the pseudocode specified by RFC 3492. It includes
     * direct translation of the pseudocode presented there.
     *
     * Partner this class with [UTS #46] to implement IDNA2008 [RFC 5890] like most browsers do.
     *
     * [RFC 3492]: https://datatracker.ietf.org/doc/html/rfc3492
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ConfigureUtil.java

     * Plugins should avoid using this class and methods that use {@link groovy.lang.Closure} as this makes the plugin harder to use in other languages. Instead, plugins should create methods that use {@link Action}.
     * Here's an example pseudocode:
     * <pre class='autoTested'>
     *     interface MyOptions {
     *         RegularFileProperty getOptionsFile()
     *     }
     *     abstract class MyExtension {
     *         private final MyOptions options
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. src/go/doc/comment/text.go

    			d = append(d, m) // “Hire”
    			// The next few lines are not in the paper but are necessary
    			// to handle two-word inputs correctly. It appears to be
    			// just a bug in the paper's pseudocode.
    			if len(d) == 2 && cmp(g(d[1], m+1), g(d[0], m+1)) <= 0 {
    				d = d[1:]
    			}
    		}
    	}
    	bestleft = append(bestleft, d[0])
    
    	// Recover least weight sequence from bestleft.
    	n := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top