Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 324 for Positions (0.15 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

        /**
         * @return the current context with the characters moving forward from the write position erased.
         */
        AnsiContext eraseForward();
    
        /**
         * @return the current context with the entire line erased.
         */
        AnsiContext eraseAll();
    
        /**
         * @return the current context moved to the specified position.
         */
        AnsiContext cursorAt(Cursor cursor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/kotlin/styles/gradle.css

     * limitations under the License.
     */
    
    /* Adjust top left logo */
    
    .library-name a {
        position: relative;
        margin-left: 65px;
    }
    
    .library-name a::before {
        content: '';
        background: url("../images/gradle-logo.svg") center no-repeat;
        background-size: contain;
        position: absolute;
        width: 65px;
        height: 65px;
        top: -27px;
        left: -72px;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

        return "AddInput";
      }
    }
    
    std::vector<string> ArgView::SetterArgs() const { return {VariableName()}; }
    
    bool ArgView::IsList() const { return arg_.arg_type().is_list(); }
    
    int ArgView::Position() const { return arg_.position(); }
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/c/env.cc

          status, ::tensorflow::Env::Default()->DeleteFile(filename));
    }
    
    bool TF_StringStreamNext(TF_StringStream* list, const char** result) {
      if (list->position >= list->list->size()) {
        *result = nullptr;
        return false;
      }
    
      *result = list->list->at(list->position++).c_str();
      return true;
    }
    
    void TF_StringStreamDone(TF_StringStream* list) {
      delete list->list;
      delete list;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/nio/ChannelUtil.java

         * @param position
         *            読み込みを開始する位置
         * @return 読み込んだバイト数
         */
        public static int read(final FileChannel channel, final ByteBuffer buffer, final long position) {
            assertArgumentNotNull("channel", channel);
            assertArgumentNotNull("buffer", buffer);
    
            try {
                return channel.read(buffer, position);
            } catch (final IOException e) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/smartCastProvider/AbstractHLSmartCastInfoTest.kt

                        val receiverSmartCasts = expression.getImplicitReceiverSmartCast()
                        for (receiverSmartCast in receiverSmartCasts) {
                            appendLine("receiver: ${receiverSmartCast.kind}")
                            appendLine("    smartCastType: ${receiverSmartCast.type.render(position = Variance.INVARIANT)}")
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/testing_test.go

    // ERROR "0:0"
    x /* ERROR "3:1" */                // ignore automatically inserted semicolon here
    /* ERROR "3:1" */                  // position of x on previous line
       x /* ERROR "5:4" */ ;           // do not ignore this semicolon
    /* ERROR "5:24" */                 // position of ; on previous line
    	package /* ERROR "7:2" */  // indented with tab
            import  /* ERROR "8:9" */  // indented with blanks
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceImportAliasTest.kt

            }
        }
    
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val position = testServices.expressionMarkerProvider.getCaretPosition(mainFile)
            val reference = mainFile.findReferenceAt(position)
            assertNotNull(reference)
            val expectedAlias = mainModule.testModule.directives.singleValue(Directives.TYPE_ALIAS)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 15:30:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/KtRendererProvider.kt

    ) : KaSymbolDeclarationRendererProvider() {
    
        override fun renderType(type: KaType, renderer: KaTypeRenderer, position: Variance): String {
            return with(analysisSession) {
                val approximatedType = KaRendererTypeApproximator.TO_DENOTABLE.approximateType(analysisSession, type, position)
                prettyPrint { renderer.renderType(analysisSession, approximatedType, this) }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

      public final int length() {
        return longs.length();
      }
    
      /**
       * Gets the current value at position {@code i}.
       *
       * @param i the index
       * @return the current value
       */
      public final double get(int i) {
        return longBitsToDouble(longs.get(i));
      }
    
      /**
       * Atomically sets the element at position {@code i} to the given value.
       *
       * @param i the index
       * @param newValue the new value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top