Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for testObj (1 sec)

  1. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "TESTW", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTW", typ: "Flags"}, // (arg0 & arg1) compare to 0
    		{name: "TESTB", argLength: 2, reg: gp2flags, commutative: true, asm: "TESTB", typ: "Flags"}, // (arg0 & arg1) compare to 0
    		{name: "TESTLconst", argLength: 1, reg: gp1flags, asm: "TESTL", typ: "Flags", aux: "Int32"}, // (arg0 & auxint) compare to 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                        }
                    }
                }
    """
            resolve.prepare("conf")
    
            expect:
            succeeds(":b:checkDeps")
            resolve.expectGraph {
                root(":b", "test:b:") {
                    edge("project :a", "org.gradle.test:a:1.3") {
                        selectedByRule()
                    }
                }
            }
        }
    
        void "forces multiple modules by rule"()
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

                    }
                }
            }
    
            when:
            succeeds("b:checkDeps")
    
            then:
            resolve.expectGraph {
                root(":b", "test:b:") {
                    module("org.gradle.test:external1:1.0") {
                        artifact(classifier: "classifier2")
                    }
                }
            }
        }
    
        @Issue("GRADLE-739")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

         \\--- conf
    """
        }
    
        def "correctly reports attributes declared on dependencies"() {
            given:
            mavenRepo.module('org', 'testA', '1.0').publish()
            mavenRepo.module('org', 'testB', '1.0').publish()
    
            buildFile << """
                def CUSTOM_ATTRIBUTE = Attribute.of('custom', CustomAttributeType)
                dependencies.attributesSchema.attribute(CUSTOM_ATTRIBUTE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

            and:
            buildFile << """
    repositories { ivy { url "${ivyRepo.uri}" } }
    configurations {
        merged
    }
    dependencies {
        merged "org.gradle.test:a:1.0", "org.gradle.test:b:1.0"
    }
    
    task syncMerged(type: Sync) {
        from configurations.merged
        into "libs"
    }
    """
    
            when:
            succeeds "syncMerged"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    	destObj, err := genTransitionObjName(bucket)
    	if err != nil {
    		return err
    	}
    
    	pr, pw := xioutil.WaitPipe()
    	go func() {
    		err := er.getObjectWithFileInfo(ctx, bucket, object, 0, fi.Size, pw, fi, metaArr, onlineDisks)
    		pw.CloseWithError(err)
    	}()
    
    	var rv remoteVersionID
    	rv, err = tgtClient.Put(ctx, destObj, pr, fi.Size)
    	pr.CloseWithError(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/runtime/memmove_amd64.s

    	JE	move_8
    	CMPQ	BX, $16
    	JBE	move_9through16
    	CMPQ	BX, $32
    	JBE	move_17through32
    	CMPQ	BX, $64
    	JBE	move_33through64
    	CMPQ	BX, $128
    	JBE	move_65through128
    	CMPQ	BX, $256
    	JBE	move_129through256
    
    	TESTB	$1, runtime·useAVXmemmove(SB)
    	JNZ	avxUnaligned
    
    /*
     * check and set for backwards
     */
    	CMPQ	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	CMPQ	BX, $2048
    	JLS	move_256through2048
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. src/path/filepath/path_test.go

    	"b/",
    	"../a",
    	"../a/b",
    	"../a/b/./c/../../.././a",
    	"../a/b/./c/../../.././a/",
    	"$",
    	"$/.",
    	"$/a/../a/b",
    	"$/a/b/c/../../.././a",
    	"$/a/b/c/../../.././a/",
    }
    
    func TestAbs(t *testing.T) {
    	root := t.TempDir()
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatal("getwd failed: ", err)
    	}
    	err = os.Chdir(root)
    	if err != nil {
    		t.Fatal("chdir failed: ", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            SimpleProblemCollector result = validate("bad-plugin-dependency-version.xml");
    
            assertViolations(result, 0, 1, 0);
    
            assertTrue(result.getErrors().get(0).contains("test:b"));
        }
    
        @Test
        void testBadVersion() throws Exception {
            SimpleProblemCollector result = validate("bad-version.xml");
    
            assertViolations(result, 0, 1, 0);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                repositories {
                   maven { url "${mavenRepo.uri}" }
                }
    
                dependencies {
                    implementation 'org.test:a:1.0'
                    implementation 'org.test:b:1.0'
                }
            """
    
            when:
            run "dependencyInsight", "--dependency", "leaf"
    
            then:
            outputContains """org.test:leaf:1.0
      Variant compile:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top