Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 237 for Prepare (1.07 sec)

  1. tests/associations_has_one_test.go

    	}
    	AssertAssociationCount(t, user2, "Account", 0, "after delete")
    
    	// Prepare Data for Clear
    	account = Account{Number: "account-has-one-append"}
    	if err := DB.Model(&user2).Association("Account").Append(&account); err != nil {
    		t.Fatalf("Error happened when append Account, got %v", err)
    	}
    
    	AssertAssociationCount(t, user2, "Account", 1, "after prepare data")
    
    	// Clear
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

         *
         * @see jcifs.internal.smb2.ServerMessageBlock2Response#prepare(jcifs.internal.CommonServerMessageBlockRequest)
         */
        @Override
        public void prepare ( CommonServerMessageBlockRequest next ) {
            if ( isReceived() ) {
                ( (ServerMessageBlock2) next ).setTreeId(getTreeId());
            }
            super.prepare(next);
        }
    
    
        /**
         * @return the shareType
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon May 23 14:35:20 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/MultiProjectDerivationStrategyIntegTest.groovy

                    dependencies {
                        other('org:foo:1.1')
                    }
                    applyFrom("../resolve-b")
                }
            }
            resolveA.prepare()
            resolveB.addDefaultVariantDerivationStrategy()
            resolveB.prepare()
    
            when:
            run 'a:checkDeps'
    
            then:
            resolveA.expectGraph {
                root(":a", "org:a:1.0") {
                    module("org:foo:1.1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/poll/fd_poll_runtime.go

    }
    
    func (pd *pollDesc) prepare(mode int, isFile bool) error {
    	if pd.runtimeCtx == 0 {
    		return nil
    	}
    	res := runtime_pollReset(pd.runtimeCtx, mode)
    	return convertErr(res, isFile)
    }
    
    func (pd *pollDesc) prepareRead(isFile bool) error {
    	return pd.prepare('r', isFile)
    }
    
    func (pd *pollDesc) prepareWrite(isFile bool) error {
    	return pd.prepare('w', isFile)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pom.xml

    				<artifactId>jacoco-maven-plugin</artifactId>
    				<version>0.8.10</version>
    				<executions>
    					<execution>
    						<goals>
    							<goal>prepare-agent</goal>
    						</goals>
    					</execution>
    					<execution>
    						<id>report</id>
    						<phase>prepare-package</phase>
    						<goals>
    							<goal>report</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Thu Jan 04 12:50:27 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/build.gradle.kts

        }
    }
    // end::source-sets[]
    
    // tag::task-dependencies[]
    tasks {
        compileJava {
            dependsOn("prepare")  // <1>
        }
        named("package") {
            setDependsOn(listOf(compileJava))  // <2>
        }
        assemble {
            setDependsOn(listOf("package"))  // <3>
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 771 bytes
    - Viewed (0)
  7. lib/time/update.bash

    # This script rebuilds the time zone files using files
    # downloaded from the ICANN/IANA distribution.
    #
    # To prepare an update for a new Go release,
    # consult https://www.iana.org/time-zones for the latest versions,
    # update CODE and DATA below, and then run
    #
    #	./update.bash -commit
    #
    # That will prepare the files and create the commit.
    #
    # To review such a commit (as the reviewer), use:
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/EnforcedPlatformIntegrationTest.groovy

                }
            """
    
            def resolve = new ResolveTestFixture(buildFile, 'runtimeClasspath')
            resolve.expectDefaultConfiguration('runtimeElements')
            resolve.prepare()
    
            when:
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/DeprecatedTLSVersionDependencyResolutionIntegrationTest.groovy

            }
            keyStore.configureServerCert(executer)
            def module = mavenHttpRepo.module('group', 'projectA', '1.2').publish()
    
            and:
            writeBuildFile()
            failedResolve.prepare()
    
            when:
            module.allowAll()
    
            then:
            executer.withStackTraceChecksDisabled()
            fails('checkDeps')
    
            and:
            failedResolve.assertFailurePresent(failure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/build.gradle

                destinationDirectory = file(ant.properties['classes.dir'])
            }
        }
    }
    // end::source-sets[]
    
    // tag::task-dependencies[]
    compileJava.dependsOn 'prepare'  // <1>
    tasks.named('package') { dependsOn = [ 'compileJava' ] }  // <2>
    assemble.dependsOn = [ 'package' ]  // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
Back to top