Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 567 for created (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failure.assertHasCause("Failed to create service 'counter1'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
            failure.assertHasCause("broken")
            failure.assertHasDescription("Execution failed for task ':second'.")
            failure.assertHasCause("Failed to create service 'counter2'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsParallelIntegrationTest.groovy

            sleep(1000)
            handleA.releaseAll()
    
            result = build.waitForFinish()
    
            then: "build succeeds and only one listener service was created"
    
            outputContains("listener 1 created")
            outputDoesNotContain("listener 2 created")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            "'files=' + tree.files.name.sort()"                                                             | "files=[]"       | "files=[file1]"
            "'files=' + { def names = new TreeSet(); tree.visit { d -> names.add(d.file.name) }; names }()" | "files=[]"       | "files=[file1]"
            // TODO - should not invalidate the cache when the empty root directory is created
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tests/associations_has_many_test.go

    import (
    	"testing"
    
    	"gorm.io/gorm"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestHasManyAssociation(t *testing.T) {
    	user := *GetUser("hasmany", Config{Pets: 2})
    
    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create: %v", err)
    	}
    
    	CheckUser(t, user, user)
    
    	// Find
    	var user2 User
    	DB.Find(&user2, "id = ?", user.ID)
    	DB.Model(&user2).Association("Pets").Find(&user2.Pets)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            assert accessedFile.createNewFile()
            configurationCacheRunLenient()
    
            then: "the cache entry is invalidated and the created file is reported"
            configurationCache.assertStateStored()
            outputContains("because the file system entry '$testFileName' has been created")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     *
     * To pass a symbol from one read action to another, use [KaSymbolPointer], which can be created from a symbol by [KaSymbol.createPointer].
     *
     * To create a [KaSession], please use [analyze] or one of its siblings.
     *
     * ### Conventions to avoid leakage
     *
     * It is crucial to avoid leaking the analysis session outside the read action it was created in, as the analysis session itself and all
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. pkg/volume/util/atomic_writer.go

    			return err
    		}
    	}
    
    	return nil
    }
    
    // createUserVisibleFiles creates the relative symlinks for all the
    // files configured in the payload. If the directory in a file path does not
    // exist, it is created.
    //
    // Viz:
    // For files: "bar", "foo/bar", "baz/bar", "foo/baz/blah"
    // the following symlinks are created:
    // bar -> ..data/bar
    // foo -> ..data/foo
    // baz -> ..data/baz
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tests/associations_has_one_test.go

    import (
    	"testing"
    
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestHasOneAssociation(t *testing.T) {
    	user := *GetUser("hasone", Config{Account: true})
    
    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create: %v", err)
    	}
    
    	CheckUser(t, user, user)
    
    	// Find
    	var user2 User
    	DB.Find(&user2, "id = ?", user.ID)
    	DB.Model(&user2).Association("Account").Find(&user2.Account)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            }
    
            /**
             * The given number of build scoped models are created.
             */
            void buildModelCreated(int count = 1) {
                runsTasks = false
                loadsOnStore = false
                buildModelQueries += count
            }
    
            /**
             * One model is created for each of the given projects. The projects will also be configured
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

        /**
         * These services are created once per {@code org.gradle.api.invocation.Gradle} at the beginning of the build invocation.
         * These services are closed at the end of the build invocation.
         *
         * <p>{@link Build} and parent scope services are visible to {@link Gradle} scope services, but not vice versa.</p>
         */
        interface Gradle extends Build {}
    
        /**
         * These services are created once per project per build invocation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top