Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,970 for other2 (0.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            buildFile << """
                task otherBuild(type:GradleBuild) {
                    dir = 'other'
                    tasks = ['resolve']
                }
            """
            createDirs("other", "other/a", "other/b")
            file("other/settings.gradle") << """
                include 'a', 'b'
            """
            file("other/build.gradle") << """
                allprojects { configurations.create('default') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        @Test
        void canExecuteExternalScriptFromExternalScript() {
            testFile('build.gradle') << ''' apply { from 'other1.gradle' } '''
            testFile('other1.gradle') << ''' apply { from 'other2.gradle' } '''
            testFile('other2.gradle') << ''' task doStuff '''
    
            inTestDirectory().withTasks('doStuff').run()
        }
    
        @Test
        void canFetchScriptViaHttp() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            System.properties['java.version'] = "1.$version" as String
    
            expect:
            jvm.javaVersion."java$version"
            !jvm.javaVersion."java$other1"
            !jvm.javaVersion."java$other2"
    
            where:
            version | other1 | other2
            5       | 6      | 7
            6       | 7      | 5
            7       | 5      | 6
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

            def toConfig2 = configuration(toComponent, "to-2")
            fromConfig.hierarchy >> ImmutableSet.of("from")
            fromConfig2.hierarchy >> ImmutableSet.of("other")
            fromConfig3.hierarchy >> ImmutableSet.of("other2")
            toConfig1.visible >> true
            toConfig2.visible >> true
            toComponent.metadata >> toComponentMetadata
            toComponent.getConfigurationNames() >> ["to-1", "to-2"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    			// ones! β€” is not a Go package, and we can't resolve it to a package
    			// path because that path could plausibly be provided by some other
    			// module.
    			//
    			// Any other error indicates that the package β€œexists” (at least in the
    			// sense that it cannot exist in any other module), but has some other
    			// problem (such as a syntax error).
    			return "", err
    		}
    	}
    
    	for _, mod := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            thrown InvalidUserDataException
        }
    
        def "reports indirect cycle in extended configurations"() {
            def configuration = conf()
            def conf1 = conf("other")
            def conf2 = conf("other2")
    
            when:
            configuration.extendsFrom(conf1)
            conf1.extendsFrom(conf2)
            conf2.extendsFrom(configuration)
    
            then:
            thrown InvalidUserDataException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/groovy/other.gradle

    Laura Kassovic <******@****.***> 1712356553 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 287 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/other.gradle.kts

    Laura Kassovic <******@****.***> 1712356553 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 283 bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

    On the other side, there are thousands of users in the chat systems, so there's a high chance you'll find someone to talk to there, almost all the time. πŸ˜„
    
    ## Sponsor the author
    
    You can also financially support the author (me) through <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub sponsors</a>.
    
    There you could buy me a coffee β˜•οΈ to say thanks. πŸ˜„
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/websockets.md

    And all of them will use the same WebSocket connection.
    
    ## Using `Depends` and others
    
    In WebSocket endpoints you can import from `fastapi` and use:
    
    * `Depends`
    * `Security`
    * `Cookie`
    * `Header`
    * `Path`
    * `Query`
    
    They work the same way as for other FastAPI endpoints/*path operations*:
    
    === "Python 3.10+"
    
        ```Python hl_lines="68-69  82"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top