Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 357 for Positions (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modindex/scan.go

    	imports              []rawImport
    	embeds               []embed
    	directives           []build.Directive
    }
    
    type rawImport struct {
    	path     string
    	position token.Position
    }
    
    type embed struct {
    	pattern  string
    	position token.Position
    }
    
    // importRaw fills the rawPackage from the package files in srcDir.
    // dir is the package's path relative to the modroot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/storage/admin_storage_tag_edit.jsp

    										<div class="col-sm-6">
    											<la:message key="labels.storage_tag_value" />
    										</div>
    									</div>
    									<c:forEach var="position" begin="1" end="${savedTags.size()/2}">
    									<c:set var="nameKey">name${position}</c:set>
    									<c:set var="valueKey">value${position}</c:set>
    									<div class="form-group row">
    										<div class="col-sm-6">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10VisibilityChecker.kt

        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun isVisible(
            candidateSymbol: KaSymbolWithVisibility,
            useSiteFile: KaFileSymbol,
            position: PsiElement,
            receiverExpression: KtExpression?
        ): Boolean {
            if (candidateSymbol.visibility == Visibilities.Public) {
                return true
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top