Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 2,769 for indirectly (0.35 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftCachingIntegrationTest.groovy

            setupProject(newLocation)
    
            when:
            inDirectory(originalLocation)
            withBuildCache().run compileTask(buildType)
    
            then:
            executedAndNotSkipped allCompileTasks
    
            when:
            originalLocation.deleteDir()
            executer.beforeExecute {
                inDirectory(newLocation)
            }
    
            run 'clean'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. utils/tests/utils.go

    	"go/ast"
    	"reflect"
    	"testing"
    	"time"
    
    	"gorm.io/gorm/utils"
    )
    
    func AssertObjEqual(t *testing.T, r, e interface{}, names ...string) {
    	for _, name := range names {
    		rv := reflect.Indirect(reflect.ValueOf(r))
    		ev := reflect.Indirect(reflect.ValueOf(e))
    		if rv.IsValid() != ev.IsValid() {
    			t.Errorf("%v: expect: %+v, got %+v", utils.FileWithLineNum(), r, e)
    			return
    		}
    		got := rv.FieldByName(name).Interface()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 10 09:21:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/patch.example.com_direct_v1.1.0.txt

    written by hand
    
    -- .mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- .info --
    {"Version":"v1.1.0"}
    -- go.mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- direct.go --
    package direct
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 336 bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuterIntegrationTest.groovy

            def result1 = executer
                .inDirectory(temporaryFolder.testDirectory)
                .withTasks("help")
                .withTestConsoleAttached()
                .withConsole(console)
                .run()
    
            System.out.println("AFTER OUT")
            System.err.println("AFTER ERR")
    
            def result2 = executer
                .inDirectory(temporaryFolder.testDirectory)
                .withTasks("help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. tools/golangci-override.yaml

              - pkg: github.com/golang/protobuf/jsonpb
                desc: "don't use the jsonpb package directly; use util/protomarshal instead"
              - pkg: google.golang.org/protobuf/encoding/protojson
                desc: "don't use the protojson package directly; use util/protomarshal instead"
              - pkg: gomodules.xyz/jsonpatch/v3
                desc: "don't use v3; v2 is orders of magnitude higher performance"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                    }
                """
                settingsFile << """
                    includeBuild("../includedBuild")
                """
            }
            executer.beforeExecute {
                inDirectory(consumer)
            }
            def expectedWatchableHierarchies = [
                ImmutableSet.of(consumer),
                ImmutableSet.of(consumer, includedBuild)
            ]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleSamplesIntegrationTest.groovy

        @UsesSample("modelRules/modelDsl")
        def "dsl creation example works"() {
            when:
            inDirectory(sample.dir.file('groovy'))
    
            then:
            succeeds "hello"
            output.contains("Hello John Smith!")
    
            when:
            inDirectory(sample.dir.file('groovy'))
    
            then:
            succeeds "listPeople"
            output.contains("configuring Person 'people.john'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/response-headers.md

    You can also declare the `Response` parameter in dependencies, and set headers (and cookies) in them.
    
    ## Return a `Response` directly
    
    You can also add headers when you return a `Response` directly.
    
    Create a response as described in [Return a Response Directly](response-directly.md){.internal-link target=_blank} and pass the headers as an additional parameter:
    
    ```Python hl_lines="10-12"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/additional-responses.md

                    * **FastAPI** adds a reference here to the global JSON Schemas in another place in your OpenAPI instead of including it directly. This way, other applications and clients can use those JSON Schemas directly, provide better code generation tools, etc.
    
    The generated responses in the OpenAPI for this *path operation* will be:
    
    ```JSON hl_lines="3-12"
    {
        "responses": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MonkeyPatchRelocationIntegrationTest.groovy

            def relocated = testDirectory.file("relocated")
    
            setupProjectIn(original)
            setupProjectIn(relocated)
    
            inDirectory(original)
            withBuildCache().run "broken"
    
            when:
            inDirectory(relocated)
            withBuildCache().run "broken"
            then:
            skipped ":broken"
        }
    
        private void setupProjectIn(TestFile dir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 23 12:40:43 UTC 2019
    - 2.5K bytes
    - Viewed (0)
Back to top