Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 279 for Vasiliy (0.11 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/JvmProjectGeneratorTask.groovy

                }
            }
        }
    
        // generates a descriptor which can be used in integration tests to find out easily
        // what are the dependencies between projects
        void generateProjectDependenciesDescriptor() {
            def dependencies = templateArgs.generatedDependencies
            if (dependencies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/api_object_versioner.go

    var _ Versioner = APIObjectVersioner{}
    
    // CompareResourceVersion compares etcd resource versions.  Outside this API they are all strings,
    // but etcd resource versions are special, they're actually ints, so we can easily compare them.
    func (a APIObjectVersioner) CompareResourceVersion(lhs, rhs runtime.Object) int {
    	lhsVersion, err := a.ObjectResourceVersion(lhs)
    	if err != nil {
    		// coder error
    		panic(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:19:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	LabelNodeExcludeBalancers = "node.kubernetes.io/exclude-from-external-load-balancers"
    	// LabelMetadataName is the label name which, in-tree, is used to automatically label namespaces, so they can be selected easily by tools which require definitive labels
    	LabelMetadataName = "kubernetes.io/metadata.name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/templates.md

    # Templates
    
    You can use any template engine you want with **FastAPI**.
    
    A common choice is Jinja2, the same one used by Flask and other tools.
    
    There are utilities to configure it easily that you can use directly in your **FastAPI** application (provided by Starlette).
    
    ## Install dependencies
    
    Install `jinja2`:
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. docs/iam/access-management-plugin.md

    ## Quickstart
    
    To easily try out the feature, run the included demo Access Management Plugin program in this directory:
    
    ```sh
    go run access-manager-plugin.go
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 13 22:28:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    ====
    ----
    ORG_GRADLE_PROJECT_foo=bar
    ----
    ====
    
    This feature is useful when you don't have admin rights to a continuous integration server and you need to set property values that should not be easily visible.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. docs/en/docs/help-fastapi.md

    In GitHub, the template will guide you to write the right question so that you can more easily get a good answer, or even solve the problem yourself even before asking. And in GitHub I can make sure I always answer everything, even if it takes some time. I can't personally do that with the chat systems. 😅
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectArtifactResolver.java

            // This is not thread-safe because of lock juggling that happens for project state. When calculating the dependencies for an IDEA model, we can easily
            // deadlock when there are multiple projects that need to be locked at the same time.
            ResolvableArtifact resolvableArtifact = allResolvedArtifacts.get(artifact.getId());
            if (resolvableArtifact == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    In addition to the benefits of a multirepo architecture, using a Gradle composite build in this way allows a developer to easily choose which modules to develop as source dependencies and which to integrate via a binary repository.
    
    == Running `multirepo-app` with dependencies from included builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/math/sqrt.go

    //
    //      otherwise,
    //                         -i                      -(i+1)
    //          s     =  s  + 2  ,  y    = y  -  s  - 2              (5)
    //           i+1      i          i+1    i     i
    //
    //      One may easily use induction to prove (4) and (5).
    //      Note. Since the left hand side of (3) contain only i+2 bits,
    //            it is not necessary to do a full (53-bit) comparison
    //            in (3).
    //   3. Final rounding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top