Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for pseudocode (0.12 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. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

              [(IEEEFloatTensor $l)]>;
    
    // Performs a substitution of FloorDiv for integer tensors, which required
    // additional correction for a negative numerator / denominator. Equivalent
    // pseudocode is shown below:
    //
    // T z = x / y
    // return (z * y != x && (x < 0) != (y < 0)) ? z - 1 : z
    //
    // BroadcastToDimensions is used to compute the broadcast attr to higher
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. 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)
  7. src/runtime/mbarrier.go

    // overwritten—with Dijkstra insertion barrier—which shades the object
    // whose reference is being written. The insertion part of the barrier
    // is necessary while the calling goroutine's stack is grey. In
    // pseudocode, the barrier is:
    //
    //     writePointer(slot, ptr):
    //         shade(*slot)
    //         if current stack is grey:
    //             shade(ptr)
    //         *slot = ptr
    //
    // slot is the destination in Go code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

            // `tf.Identity` op is also treated as special tpu ops since it can play
            // a role as connection between `tf.TPUReplicatedInput` or
            // `tf.TPUPartitionedInput`. For example, we have the follow pseudocode:
            // %0 = tf_executor.island wraps "tf.OpA" (){_replication_info = 'c'}
            // %1 = tf_executor.island wraps "tf.Identity(%0)
            // %2 = tf_executor.island wraps "tf.TPUReplicatedInput"(%1)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      1. SC forward pass
      2. TC forward/backward pass
      3. SC backward pass
      4. non-TPU loop counter updates
    These 4 functions are then staggered so as to enable parallel execution.
    
    In pseudocode, the algorithm is as follows:
    
    // Start step 0
    C_0 = cond(args_0)
    N_0 = non_tpu(args_0)
    if (C_0) {
       F_0 = forward(args_0, N_0)
       T_0 = core_tpu(args_0, N_0, F_0)
       // B_0 = backward() is not evaluated here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_static_test.go

    	expCPUAlloc     bool
    	expCSet         cpuset.CPUSet
    }
    
    // this is not a real Clone() - hence Pseudo- - because we don't clone some
    // objects which are accessed read-only
    func (spt staticPolicyTest) PseudoClone() staticPolicyTest {
    	return staticPolicyTest{
    		description:     spt.description,
    		topo:            spt.topo, // accessed in read-only
    		numReservedCPUs: spt.numReservedCPUs,
    		podUID:          spt.podUID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top