Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,906 for while_1 (1.21 sec)

  1. tensorflow/cc/framework/while_gradients_test.cc

      // ---------
      //  0  1  2 <-- initial values
      //  1  2  2
      //  3  3  2
      //  6  4  2
      // 10  5  2 <-- while output values
      // outputs sum = 17
      //
      //  i  j  k
      // ---------
      //  0  2  2 <-- initial values (add 1 to j)
      //  2  3  2
      //  5  4  2
      //  9  5  2
      // 14  6  2 <-- while output values
      // outputs sum = 22
      //
      // Calculate the "slope" between j=1 and j=2:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 27 20:32:17 UTC 2017
    - 7.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/loopLabelBreakUsed.kt

    fun test() {
    
        outer@while(true) {
            inner@while(false) {
                val x = <expr>break@outer</expr>
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 129 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/differentTargets/break.kt

    fun test() {
        outer@ while (cond()) {
            consume(1)
            while (cond()) {
                consume(2)
                <expr>if (cond()) {
                    break
                } else if (cond()) {
                    break@outer
                }</expr>
            }
        }
    }
    
    fun consume(obj: Any?) {}
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 316 bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     *   <li>It is easy for the user to ensure that listeners are never invoked while holding locks.
     * </ul>
     *
     * The last point is subtle. Often the observable object will be managing its own internal state
     * using a lock, however it is dangerous to dispatch listeners while holding a lock because they
     * might run on the {@code directExecutor()} or be otherwise re-entrant (call back into your
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/NamespaceBuilder.java

    public class NamespaceBuilder {
        public static String toNamespace(String name) {
            StringBuilder result = new StringBuilder();
            int pos = 0;
            while (pos < name.length()) {
                while (pos < name.length() && !isCppIdentifierCharacterStart(name.charAt(pos))) {
                    pos++;
                }
                if (pos == name.length()) {
                    break;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorErrorHandlingIntegrationTest.groovy

                    workActionClass = ${failureExecution.name}.class
                }
            """.stripIndent()
    
            when:
            fails("runInWorker")
    
            then:
            failureHasCause("A failure occurred while executing ${failureExecution.name}")
    
            and:
            failureHasCause("Failure from work action")
    
            where:
            isolationMode << ISOLATION_MODES
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. cluster/gce/gci/health-monitor.sh

        sleep "$(( 2 ** attempt++ ))"
      done
      while true; do
        if ! timeout 60 "${healthcheck_command[@]}" > /dev/null; then
          echo "Container runtime ${container_runtime_name} failed!"
          systemctl kill --kill-who=main "${container_runtime_name}"
          # Wait for a while, as we don't want to kill it again before it is really up.
          sleep 120
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            Iterator properties = requestProperties.entrySet().iterator();
            while (properties.hasNext()) {
                Map.Entry property = (Map.Entry) properties.next();
                String key = (String) property.getKey();
                StringBuffer value = new StringBuffer();
                Iterator values = ((List) property.getValue()).iterator();
                while (values.hasNext()) {
                    value.append(values.next());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      func.return %0 : tensor<1x2x3xf32>
    }
    
    // -----
    
    // Simple While
    func.func private @testWhileCond(tensor<*xf32>) -> (tensor<i1>)
    func.func private @testWhileBody(tensor<*xf32>) -> (tensor<*xf32>)
    
    // CHECK-LABEL: func @testWhileResult
    func.func @testWhileResult(tensor<*xf32>) -> (tensor<*xf32>) {
    ^bb0(%arg0: tensor<*xf32>):
      %1 = "tf.While"(%arg0) {
        cond = @testWhileCond,
        body = @testWhileBody,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccess.java

         *
         * @param stateLock Lock to hold while mutating state.
         * @param onOpen Action to run when the lock is opened. Action is called while holding state lock
         * @param onClose Action to run when the lock is closed. Action is called while holding state lock
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top