Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for Filetime (0.11 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     */
    
    package org.jetbrains.kotlin.analysis.api
    
    import com.intellij.psi.PsiElement
    import org.jetbrains.kotlin.analysis.api.components.*
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.analysis.api.symbols.pointers.KaSymbolPointer
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.h

    // has the same lifetime as the OpKernel.
    TF_CAPI_EXPORT extern TF_StringView TF_GetOpKernelName(TF_OpKernelContext* ctx);
    
    // Returns the default container of the resource manager in OpKernelContext.
    //
    // The returned TF_StringView's underlying string is owned by the OpKernel and
    // has the same lifetime as the OpKernel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.components
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaNamedClassOrObjectSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. schema/field_test.go

    	// test valuer and other type
    	age := myint(10)
    	var nilTime *time.Time
    	newValues2 := map[string]interface{}{
    		"name":       sql.NullString{String: "valuer_and_setter_3", Valid: true},
    		"id":         &sql.NullInt64{Int64: 3, Valid: true},
    		"created_at": tests.Now(),
    		"updated_at": nilTime,
    		"deleted_at": time.Now(),
    		"age":        &age,
    		"birthday":   mytime(time.Now()),
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

          // The tensor is created before the source range.
          if (global.last_use < remat.insert) {
            // It currently gets deallocated before the newly inserted range, so we
            // need to extend its lifetime: It will now be deallocated at its last
            // use in the inserted range.
            del_dealloc(global.last_use);
            add_dealloc(source_to_target(source.last_use));
          }
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.h

    TF_CAPI_EXPORT extern void TFE_DeleteOp(TFE_Op* op);
    
    // Returns the op or function name `op` will execute.
    //
    // The returned string remains valid throughout the lifetime of 'op'.
    TF_CAPI_EXPORT extern const char* TFE_OpGetName(const TFE_Op* op,
                                                    TF_Status* status);
    TF_CAPI_EXPORT extern TFE_Context* TFE_OpGetContext(const TFE_Op* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.components.KaSessionComponent
    import org.jetbrains.kotlin.analysis.api.components.KaSessionMixIn
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.types.base.KaFe10Type
    import org.jetbrains.kotlin.analysis.api.descriptors.utils.PublicApproximatorConfiguration
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.symbols.KaCallableSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaNamedClassOrObjectSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

     *
     * Note that this implementation should only be used to create global scoped services.
     * Note that this implementation currently retains strong references to keys and values during the whole lifetime of a build session.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    				// Tuple selectors need to appear immediately after the instruction
    				// that generates the tuple.
    				score[v.ID] = ScoreReadTuple
    			case v.hasFlagInput():
    				// Schedule flag-reading ops earlier, to minimize the lifetime
    				// of flag values.
    				score[v.ID] = ScoreReadFlags
    			case v.isFlagOp():
    				// Schedule flag register generation as late as possible.
    				// This makes sure that we only have one live flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top