Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 282 for frequently (0.2 sec)

  1. src/regexp/syntax/prog.go

    // These assertions are ASCII-only: the word characters are [A-Za-z0-9_].
    func IsWordChar(r rune) bool {
    	// Test for lowercase letters first, as these occur more
    	// frequently than uppercase letters in common cases.
    	return 'a' <= r && r <= 'z' || 'A' <= r && r <= 'Z' || '0' <= r && r <= '9' || r == '_'
    }
    
    // An Inst is a single instruction in a regular expression program.
    type Inst struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. docs/contribute/concurrency.md

    Since HTTP requests frequently happen in parallel, connection pooling must be thread-safe.
    
    These are the primary classes involved with establishing, sharing, and terminating connections:
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. docs/changelogs/upgrading_to_okhttp_4.md

    you must, mock `Call.Factory` which is the interface that `OkHttpClient` implements.
    
    #### Internal API changes
    
    The `okhttp3.internal` package is not a published API and we change it frequently without warning.
    Depending on code in this package is bad and will cause you problems with any upgrade! But the 4.x
    will be particularly painful to naughty developers that import from this package! We changed a lot
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. ReadMe.md

      precedence than the `-Pkotlin.native.enabled=true` specified in the Gradle command.
    
    ## Using -dev versions
    
    We publish `-dev` versions frequently.
    
    For `-dev` versions you can use the [list of available versions](https://maven.pkg.jetbrains.space/kotlin/p/kotlin/bootstrap/org/jetbrains/kotlin/kotlin-compiler/maven-metadata.xml) and include this maven repository:
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/internal/diff/diff.go

    // We avoid that name for two reasons. First, the name has been used
    // for a few different variants of the algorithm, so it is imprecise.
    // Second, the name is frequently interpreted as meaning that you have
    // to wait longer (to be patient) for the diff, meaning that it is a slower algorithm,
    // when in fact the algorithm is faster than the standard one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    Testing in the native ecosystem is a rich subject matter.
    There are many different testing libraries and frameworks, as well as many different types of test.
    All need to be part of the build, whether they are executed frequently or infrequently.
    This chapter is dedicated to explaining how Gradle handles differing requirements between and within builds, with significant coverage of how it integrates with XCTest on both macOS and Linux.
    
    It explains:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/internal/godebug/godebug.go

    // Value returns the current value for the GODEBUG setting s.
    //
    // Value maintains an internal cache that is synchronized
    // with changes to the $GODEBUG environment variable,
    // making Value efficient to call as frequently as needed.
    // Clients should therefore typically not attempt their own
    // caching of Value's result.
    func (s *Setting) Value() string {
    	s.once.Do(func() {
    		s.setting = lookup(s.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    5. Copy the `./app` directory inside the `/code` directory.
    
        As this has all the code which is what **changes most frequently** the Docker **cache** won't be used for this or any **following steps** easily.
    
        So, it's important to put this **near the end** of the `Dockerfile`, to optimize the container image build times.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    To facilitate this, you can include lifecycle tasks that span multiple subprojects.
    
    NOTE: Gradle has been around for a long time, and you will frequently observe build files in the root directory serving various purposes.
    In older Gradle versions, many tasks were defined within the root Gradle build file, resulting in various issues.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    By default, Gradle caches dynamic versions and changing modules for 24 hours. During that time frame Gradle does not contact any of the declared, remote repositories for new versions. If you want Gradle to check the remote repository more frequently or with every execution of your build, then you will need to change the time to live (TTL) threshold.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top