Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for especially (0.21 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

     *
     * The Kotlin core environment shares the application between multiple tests running in parallel. We need to ensure that application
     * services are only registered once, and especially that no races happen. Thread safety is ensured with a lock, while registrations are
     * kept unique by remembering which service registrars have been applied already.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/internal/goexperiment/flags.go

    //
    // Note that this package defines the set of experiments (in Flags)
    // and records the experiments that were enabled when the package
    // was compiled (as boolean and integer constants).
    //
    // Note especially that this package does not itself change behavior
    // at run time based on the GOEXPERIMENT variable.
    // The code used in builds to interpret the GOEXPERIMENT variable
    // is in the separate package internal/buildcfg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/ts_test.go

    	}
    }
    
    var funcInvoked bool
    
    //go:noinline
    func thisFunctionOnlyCalledFromSnapshotTest(n int) int {
    	if funcInvoked {
    		panic("bad")
    	}
    	funcInvoked = true
    
    	// Contents here not especially important, just so long as we
    	// have some statements.
    	t := 0
    	for i := 0; i < n; i++ {
    		for j := 0; j < i; j++ {
    			t += i ^ j
    		}
    	}
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            // In this case, we shouldn't attribute the error to the `task` alone, as it can be misleading,
            // and that usage can be benign. This is especially important when the currently running task is
            // marked as `notCompatibleWithConfigurationCache` - attributing the error to `task` will cause
            // the build to fail when it really shouldn't.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. README.md

    6.  For the mainline flavor, we test the libraries using OpenJDK 8, 11, and 17
        on Linux, with some additional testing on newer JDKs and on Windows. Some
        features, especially in `com.google.common.io`, may not work correctly in
        non-Linux environments. For the Android flavor, our unit tests also run on
        API level 21 (Lollipop).
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/background-tasks.md

    They tend to require more complex configurations, a message/job queue manager, like RabbitMQ or Redis, but they allow you to run background tasks in multiple processes, and especially, in multiple servers.
    
    To see an example, check the [Project Generators](../project-generation.md){.internal-link target=_blank}, they all include Celery already configured.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. docs/pt/docs/fastapi-people.md

    * [Create Pull Requests](help-fastapi.md#crie-um-pull-request){.internal-link target=_blank}.
    * Revisar Pull Requests, [especially important for translations](contributing.md#traducoes){.internal-link target=_blank}.
    
    Uma salva de palmas para eles. 👏 🙇
    
    ## Usuários mais ativos do ultimo mês
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    3. Finally, we used the `build` task -- unlike incremental builds, the previous outputs were stored in the local cache and could be reused.
    
    Gradle is efficient, especially with the local build cache turned on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/extra-models.md

    # Extra Models
    
    Continuing with the previous example, it will be common to have more than one related model.
    
    This is especially the case for user models, because:
    
    * The **input model** needs to be able to have a password.
    * The **output model** should not have a password.
    * The **database model** would probably need to have a hashed password.
    
    !!! danger
        Never store user's plaintext passwords. Always store a "secure hash" that you can then verify.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. pkg/model/proxy.go

    // always derived from the Proxy metadata
    type TrafficInterceptionMode string
    
    // NodeMetadata defines the metadata associated with a proxy
    // Fields should not be assumed to exist on the proxy, especially newly added fields which will not exist
    // on older versions.
    // The JSON field names should never change, as they are needed for backward compatibility with older proxies
    // nolint: maligned
    type NodeMetadata struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top