Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 237 for Prepare (0.79 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/prepare_quantize.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-prepare-quantize | FileCheck %s
    
    module {
      func.func @same_scale_test(%arg0: tensor<*xf32>) -> tensor<*xf32> {
        %cst = arith.constant dense<[-1, 144]> : tensor<2xi32>
        %cst_1 = arith.constant dense<1.0> : tensor<144x10xf32>
        %cst_2 = arith.constant dense<0.1> : tensor<10xf32>
        %0 = "quantfork.qcast"(%arg0) : (tensor<*xf32>) -> tensor<*x!quant.uniform<i8:f32, 0.05:-10>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 29 02:42:57 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. src/runtime/memclr_ppc64x.s

    	BR    zero512xsetup // ptr should now be 8 byte aligned
    
    under512:
    	SRDCC $3, R6, R7  // 64 byte chunks?
    	XXLXOR VS32, VS32, VS32 // clear VS32 (V0)
    	BEQ   lt64gt8
    
    	// Prepare to clear 64 bytes at a time.
    
    zero64setup:
    	DCBTST (R3)             // prepare data cache
    	MOVD   R7, CTR          // number of 64 byte chunks
    	MOVD   $16, R8
    	MOVD   $32, R16
    	MOVD   $48, R17
    
    zero64:
    	STXVD2X VS32, (R3+R0)   // store 16 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionMultiRepoResolveIntegrationTest.groovy

      }
      configurations { compile }
      dependencies {
          compile 'org.test:projectA:latest.milestone'
      }
      """
            and:
            def resolve = new ResolveTestFixture(buildFile, "compile")
            resolve.prepare()
    
            when:
            repo1.module('org.test', 'projectA', '1.1').withStatus("milestone").publish()
            repo2.module('org.test', 'projectA', '1.2').withStatus("integration").publish()
            run 'checkDeps'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyParametersMetadataIntegrationTest.groovy

            buildFile << """
                apply plugin: "groovy"
                ${mavenCentralRepository()}
                compileGroovy.groovyOptions.parameters = true
            """.stripIndent()
    
    
            and: 'prepare class with method'
            file("src/main/groovy/compile/test/Person.groovy") << """
                package parameters.test
                class Person {
                    void setFullName(String fullName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_mips64x.S

    #ifndef __mips_soft_float
    	sdc1	$f24, 88($29)
    	sdc1	$f25, 96($29)
    	sdc1	$f26, 104($29)
    	sdc1	$f27, 112($29)
    	sdc1	$f28, 120($29)
    	sdc1	$f29, 128($29)
    	sdc1	$f30, 136($29)
    	sdc1	$f31, 144($29)
    #endif
    
    	// prepare SB register = pc & 0xffffffff00000000
    	bal	1f
    1:
    	dsrl	$28, $31, 32
    	dsll	$28, $28, 32
    
    	move	$20, $4 // save R4
    	move	$1, $6
    	jalr	$5	// call setg_gcc (clobbers R4)
    	jalr	$20	// call fn
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/memmove_ppc64x.s

    	BC	12, 6, checkbytes	// BEQ CR1, checkbytes
    	SRDCC	$3, DWORDS, OCTWORDS	// 64 byte chunks?
    	MOVD	$16, IDX16
    	BEQ	lt64gt8			// < 64 bytes
    
    	// Prepare for moves of 64 bytes at a time.
    
    forward64setup:
    	DCBTST	(TGT)			// prepare data cache
    	DCBT	(SRC)
    	MOVD	OCTWORDS, CTR		// Number of 64 byte chunks
    	MOVD	$32, IDX32
    	MOVD	$48, IDX48
    	PCALIGN	$16
    
    forward64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCapabilitiesResolveIntegrationTest.groovy

                            requireCapability("org:$capability")
                        }
                    }
                }
            """
            def resolve = new ResolveTestFixture(buildFile, "compileClasspath")
            resolve.prepare()
    
            when:
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/checketcd.go

    	"github.com/pkg/errors"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	etcdphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/etcd"
    )
    
    // NewCheckEtcdPhase is a hidden phase that runs after the control-plane-prepare and
    // before the bootstrap-kubelet phase that ensures etcd is healthy
    func NewCheckEtcdPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:   "check-etcd",
    		Run:    runCheckEtcdPhase,
    		Hidden: true,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 11:25:47 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top