Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 512 for Advance (0.12 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

        }
    
        val mark = currentPosition
        advance()
    
        val hasShebangLine = tokenType == KtTokens.EXCL
    
        restore(mark)
        return hasShebangLine
    }
    
    
    private
    fun KotlinLexer.hasFileAnnotations(): Boolean {
    
        if (tokenType != KtTokens.AT) {
            return false
        }
    
        val mark = currentPosition
        advance()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/MultiInputStream.java

        this.it = checkNotNull(it);
        advance();
      }
    
      @Override
      public void close() throws IOException {
        if (in != null) {
          try {
            in.close();
          } finally {
            in = null;
          }
        }
      }
    
      /** Closes the current input stream and opens the next one, if any. */
      private void advance() throws IOException {
        close();
        if (it.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PropertiesAsMap.java

                    return new Iterator<Entry<String, String>>() {
                        Entry<String, String> next;
    
                        {
                            advance();
                        }
    
                        private void advance() {
                            next = null;
                            while (iterator.hasNext()) {
                                Entry<Object, Object> e = iterator.next();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/FakeTickerTest.java

      public void testAdvance() {
        FakeTicker ticker = new FakeTicker();
        assertEquals(0, ticker.read());
        assertSame(ticker, ticker.advance(10));
        assertEquals(10, ticker.read());
        ticker.advance(1, TimeUnit.MILLISECONDS);
        assertEquals(1000010L, ticker.read());
        ticker.advance(Duration.ofMillis(1));
        assertEquals(2000010L, ticker.read());
      }
    
      public void testAutoIncrementStep_returnsSameInstance() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

        if (op->getDialect() != tf_dialect) return WalkResult::advance();
    
        if (parallel_group_attr) {
          op->setAttr(TF::kParallelExecAnnotation, parallel_group_attr);
        }
        auto device_attr = op->getAttr(kDeviceAttr);
        if (!device_attr) {
          op->setAttr(kDeviceAttr, launch.getDeviceAttr());
          return WalkResult::advance();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

                        }
                        advance()
                    }
    
                    SEMICOLON -> {
                        advance()
                        seenSeparator = true
                    }
    
                    in COMMENTS -> {
                        if (ignoresComments) {
                            advance()
                        } else {
                            break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

        private long sync(long syncMillis) {
            long newSyncMillis = advance(timeSource.currentTimeMillis());
            syncMillisRef.compareAndSet(syncMillis, newSyncMillis);
            return newSyncMillis;
        }
    
        /**
         * Advance the clock to the given timestamp and return the new time.
         * The returned time may not be the one passed in, in case another thread already advanced the clock further.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/visitor.cc

              return WalkResult::interrupt();
            }
            stack.push_back(called_func);
          }
    
          return WalkResult::advance();
        });
        if (result.wasInterrupted()) {
          return result;
        }
      }
    
      return WalkResult::advance();
    }
    
    FailureOr<OwningOpRef<ModuleOp>> CreatePrunedModule(
        ModuleOp module, llvm::ArrayRef<llvm::StringRef> function_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    	1<<_Switch |
    	1<<_Type |
    	1<<_Var
    
    // advance consumes tokens until it finds a token of the stopset or followlist.
    // The stopset is only considered if we are inside a function (p.fnest > 0).
    // The followlist is the list of valid tokens that can follow a production;
    // if it is empty, exactly one (non-EOF) token is consumed to ensure progress.
    func (p *parser) advance(followlist ...token) {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_colocate_splits.cc

            return WalkResult::advance();
          for (Operation* pred : IslandPredecessors(split)) {
            if (auto colocation_classes =
                    pred->getAttrOfType<ArrayAttr>(kClassAttr)) {
              split->setAttr(kClassAttr, colocation_classes);
              return WalkResult::advance();
            }
          }
        }
        return WalkResult::advance();
      });
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 18:44:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top