Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 642 for Prepare (0.27 sec)

  1. tests/associations_many2many_test.go

    	}
    	AssertAssociationCount(t, user2, "Languages", 0, "after delete")
    
    	// Prepare Data for Clear
    	if err := DB.Model(&user2).Association("Languages").Append(&language); err != nil {
    		t.Fatalf("Error happened when append Languages, got %v", err)
    	}
    
    	AssertAssociationCount(t, user2, "Languages", 1, "after prepare data")
    
    	// Clear
    	if err := DB.Model(&user2).Association("Languages").Clear(); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Jun 10 13:05:19 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ParallelResolveArtifactSet.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * A wrapper that prepares artifacts in parallel when visiting the delegate.
     * This is done by collecting all artifacts to prepare and/or visit in a first step.
     * The collected artifacts are prepared in parallel and subsequently visited in sequence.
     */
    public abstract class ParallelResolveArtifactSet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

        // the textual format (on the commandline for example).
        return "quant-prepare-lifting";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Apply graph optimizations such as fusing and constant folding to "
               "prepare lifting.";
      }
    
      void getDependentDialects(DialectRegistry& registry) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/runtime/testdata/testwinlib/main.c

    LONG WINAPI customExceptionHandlder(struct _EXCEPTION_POINTERS *ExceptionInfo)
    {
        if (ExceptionInfo->ExceptionRecord->ExceptionCode == EXCEPTION_BREAKPOINT)
        {
            exceptionCount++;
            // prepare context to resume execution
            CONTEXT *c = ExceptionInfo->ContextRecord;
    #ifdef _AMD64_
            c->Rip = *(DWORD64 *)c->Rsp;
            c->Rsp += 8;
    #elif defined(_X86_)
            c->Eip = *(DWORD *)c->Esp;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/cgo/abi_arm64.h

    // Macros for transitioning from the host ABI to Go ABI0.
    //
    // These macros save and restore the callee-saved registers
    // from the stack, but they don't adjust stack pointer, so
    // the user should prepare stack space in advance.
    // SAVE_R19_TO_R28(offset) saves R19 ~ R28 to the stack space
    // of ((offset)+0*8)(RSP) ~ ((offset)+9*8)(RSP).
    //
    // SAVE_F8_TO_F15(offset) saves F8 ~ F15 to the stack space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveFailureTestFixture.groovy

        private final TestFile buildFile
    
        ResolveFailureTestFixture(TestFile buildFile, String config = "compile") {
            this.buildFile = buildFile
            this.config = config
        }
    
        void prepare(String config = this.config) {
            buildFile << """
                allprojects {
                    tasks.register("checkDeps") {
                        if (${GradleContextualExecuter.configCache}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/options.go

    // but it allows us to directly get the final values for each of these flags without needing
    // to pass pointers-to-flags through all of the (sub)commands.
    func (o *KubeOptions) prepare(ctx cli.Context) {
    	o.Namespace = ctx.Namespace()
    	if o.Namespace == "" {
    		o.Namespace = ctx.IstioNamespace()
    
    		configAccess := clientcmd.NewDefaultPathOptions()
    		configAccess.GlobalFile = o.Kubeconfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 23:59:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/LocalSnapshotMetadataGenerator.java

            timestamp = (Date) ConfigUtils.getObject(session, new Date(), "maven.startTime");
    
            snapshots = new LinkedHashMap<>();
        }
    
        @Override
        public Collection<? extends Metadata> prepare(Collection<? extends Artifact> artifacts) {
            for (Artifact artifact : artifacts) {
                if (artifact.isSnapshot()) {
                    Object key = LocalSnapshotMetadata.getKey(artifact);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tests/associations_belongs_to_test.go

    		t.Fatalf("Error happened when append Manager, got %v", err)
    	}
    
    	AssertAssociationCount(t, user2, "Company", 1, "after prepare data")
    	AssertAssociationCount(t, user2, "Manager", 1, "after prepare data")
    
    	// Clear
    	if err := DB.Model(&user2).Association("Company").Clear(); err != nil {
    		t.Errorf("Error happened when clear Company, got %v", err)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ReachingAcrossProjectBoundariesIntegrationTest.groovy

            buildFile << """
                project(':a') {
                    dependencies {
                        implementation project(':b')
                    }
                    task prepare {
                        inputs.files configurations.resolver
                        doFirst {
                            configurations.resolver.files.name
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top