Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 218 for idea (0.06 sec)

  1. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ### Using context managers in dependencies with `yield`
    
    !!! warning
        This is, more or less, an "advanced" idea.
    
        If you are just starting with **FastAPI** you might want to skip it for now.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[composite_build_ide_integration]]
    === Importing into the IDE
    
    One of the most useful features of composite builds is IDE integration.
    
    Importing a composite build permits sources from separate Gradle builds to be easily developed together.
    For every included build, each subproject is included as an IntelliJ IDEA Module or Eclipse Project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableCollection.java

     *       instance.
     * </ul>
     *
     * <h4>Warnings</h4>
     *
     * <ul>
     *   <li><b>Warning:</b> as with any collection, it is almost always a bad idea to modify an element
     *       (in a way that affects its {@link Object#equals} behavior) while it is contained in a
     *       collection. Undefined behavior and bugs will result. It's generally best to avoid using
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       instance.
     * </ul>
     *
     * <h4>Warnings</h4>
     *
     * <ul>
     *   <li><b>Warning:</b> as with any collection, it is almost always a bad idea to modify an element
     *       (in a way that affects its {@link Object#equals} behavior) while it is contained in a
     *       collection. Undefined behavior and bugs will result. It's generally best to avoid using
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	// Base, Script, and Region methods. Once the transition is fully completed
    	// the ID can be stripped from the name.
    
    	LangID   Language
    	RegionID Region
    	// TODO: we will soon run out of positions for ScriptID. Idea: instead of
    	// storing lang, region, and ScriptID codes, store only the compact index and
    	// have a lookup table from this code to its expansion. This greatly speeds
    	// up table lookup, speed up common variant cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                    // MNG-2123: if the previous node was not a range, then it wouldn't have any available
                                    // versions. We just clobbered the selected version above. (why? I have no idea.)
                                    // So since we are here and this is ranges we must go figure out the version (for a
                                    // third time...)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emit.go

    // struct as nil. If a new meta-file is needed, the field 'mfname'
    // will be the final desired path of the meta file, 'mftmp' will be a
    // temporary file, and 'mf' will be an open os.File pointer for
    // 'mftmp'. The idea is that the client/caller will write content into
    // 'mf', close it, and then rename 'mftmp' to 'mfname'. This function
    // also opens the counter data output file, setting 'cf' and 'cfname'
    // in the state struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    We decided that upgrading old compiled bytecode would work well. 
    And reusing configuration cache bytecode instrumentation infrastructure seemed like a good idea.
    
    So configuration cache instrumentation and API upgrades are using the same infrastructure now, called bytecode interception infrastructure.
    
    
    ## Functional design
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    type zoneTrans struct {
    	when         int64 // transition time, in seconds since 1970 GMT
    	index        uint8 // the index of the zone that goes into effect at that time
    	isstd, isutc bool  // ignored - no idea what these mean
    }
    
    // alpha and omega are the beginning and end of time for zone
    // transitions.
    const (
    	alpha = -1 << 63  // math.MinInt64
    	omega = 1<<63 - 1 // math.MaxInt64
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

    import org.jetbrains.kotlin.descriptors.annotations.AnnotationDescriptor
    import org.jetbrains.kotlin.descriptors.annotations.AnnotationUseSiteTarget
    import org.jetbrains.kotlin.descriptors.impl.*
    import org.jetbrains.kotlin.idea.KotlinLanguage
    import org.jetbrains.kotlin.load.java.descriptors.JavaCallableMemberDescriptor
    import org.jetbrains.kotlin.load.java.descriptors.JavaClassDescriptor
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top