Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,343 for detects (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                        artifact classifier: 'test-fixtures'
                    }
                }
            }
        }
    
        def "detects conflicts between component with a capability and a variant with the same capability"() {
            given:
            repository {
                'org:foo:1.0'()
                'org:bar:1.0' {
                    variant('api') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            outputContains '2!'
            outputContains "because the set of environment variables prefixed by '${ENV_PROJECT_PROPERTIES_PREFIX}' has changed."
            configurationCache.assertStateStored()
        }
    
        def "detects dynamic Gradle property access in settings script"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            settingsFile << """
                println($dynamicPropertyExpression + '!')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. docs/en/docs/fastapi-cli.md

    <font color="#4E9A06">INFO</font>:     Application startup complete.
    ```
    
    </div>
    
    That command line program called `fastapi` is **FastAPI CLI**.
    
    FastAPI CLI takes the path to your Python program and automatically detects the variable with the FastAPI (commonly named `app`) and how to import it, and then serves it.
    
    For production you would use `fastapi run` instead. 🚀
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sub:disable_auto_detect]]
    === How to disable auto-detection
    
    In order to disable auto-detection, you can use the `org.gradle.java.installations.auto-detect` Gradle property:
    
    * Either start gradle using `-Porg.gradle.java.installations.auto-detect=false`
    * Or put `org.gradle.java.installations.auto-detect=false` into your `gradle.properties` file.
    
    [[sec:provisioning]]
    == Auto-provisioning
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

         */
        @Input
        public abstract Property<Boolean> getIgnoreFailures();
    
        /**
         * Returns whether the build should break when the verifications performed by this task detects a warning.
         */
        @Input
        public abstract Property<Boolean> getFailOnWarning();
    
        /**
         * Enable the stricter validation for cacheable tasks for all tasks.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

        }
    
        /** @see IdePlugin#toGradleCommand(Project) */
        @Requires(IntegTestPreconditions.IsEmbeddedExecutor)
        @ToBeFixedForConfigurationCache
        def "detects gradle wrapper and uses in vs project"() {
            when:
            hostGradleWrapperFile << "dummy wrapper"
    
            createDirs("exe")
            settingsFile << """
                include ':exe'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    		"Use 'enable-client-cert-rotation' instead")
    	return runKubeletFinalizeEnableClientCertRotation(c)
    }
    
    // runKubeletFinalizeEnableClientCertRotation detects if the kubelet certificate rotation is enabled
    // and updates the kubelet.conf file to point to a rotatable certificate and key for the
    // Node user.
    func runKubeletFinalizeEnableClientCertRotation(c workflow.RunData) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            when:
            watchingVirtualFileSystem.registerWatchableHierarchy(newWatchableHierarchy)
            then:
            1 * watcherRegistry.registerWatchableHierarchy(newWatchableHierarchy, _)
        }
    
        def "detects unsupported file systems on default watch mode"() {
            def unsupportedFileSystems = [new File("unsupported")]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/bools/bools.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bools defines an Analyzer that detects common mistakes
    // involving boolean operators.
    package bools
    
    import (
    	"go/ast"
    	"go/token"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. cni/README.md

    - ISTIO_META_DNS_CAPTURE env variable on the proxy - enables dns redirect
    - INVALID_DROP env var on proxy - changes behavior from reset to drop in iptables
    - auto excluded inbound ports: 15020, 15021, 15090
    
    The code automatically detects the proxyUID and proxyGID from RunAsUser/RunAsGroup and exclude them from interception, defaulting to 1337
    
    ### Overview
    
    - [istio-cni Helm chart](../manifests/charts/istio-cni/templates)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top