Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 281 for tst2 (0.36 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FilteredConfigurationIntegrationTest.groovy

            outputContains("child1-dependencies: [child1.jar, child1-lib.jar, test2-1.0.jar]")
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "can query files for filtered first level dependencies when there is a cycle in the dependency graph"() {
            mavenRepo.module("group", "test1", "1.0").publish()
            mavenRepo.module("group", "test2", "1.0").publish()
    
            createDirs("child1", "child2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/maps/maps_test.go

    	// See issue 64474.
    	type K [17]float64 // > 128 bytes
    	type V [17]float64
    
    	var zero float64
    	negZero := -zero
    
    	for tst := 0; tst < 3; tst++ {
    		// Initialize m with a key and value.
    		m := map[K]V{}
    		var k1 K
    		var v1 V
    		m[k1] = v1
    
    		switch tst {
    		case 0: // nothing, just a 1-entry map
    		case 1:
    			// Add more entries to make it 2 buckets
    			// 1 entry already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 17:05:56 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

            assertEquals("test.sh", list.get(0));
    
            cmd = "test.sh \"test1 ' test2\"";
            params.clear();
            list = extractor.parseCommand(cmd, params);
            assertEquals(2, list.size());
            assertEquals("test.sh", list.get(0));
            assertEquals("test1 ' test2", list.get(1));
    
            cmd = "test.sh 'test1 \" test2'";
            params.clear();
            list = extractor.parseCommand(cmd, params);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/switch_test.go

    }
    
    func (ST0) si0() {
    }
    
    type SI1 interface {
    	si1()
    }
    type ST1 struct {
    }
    
    func (ST1) si1() {
    }
    
    type SI2 interface {
    	si2()
    }
    type ST2 struct {
    }
    
    func (ST2) si2() {
    }
    
    type SI3 interface {
    	si3()
    }
    type ST3 struct {
    }
    
    func (ST3) si3() {
    }
    
    type SI4 interface {
    	si4()
    }
    type ST4 struct {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/html/test1.html

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>タイトル</title>
    </head>
    <body>
    <h1>第一章</h1>
    <h2>第一節</h2>
    <p>ほげほげ<br>ふがふが</p>
    <p>
    <a href="test2.html">LINK</a>
    </p>
    <h1>第2章</h1>
    <h2>第2節</h2>
    </body>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 289 bytes
    - Viewed (0)
  6. src/go/version/version_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package version
    
    import (
    	"reflect"
    	"testing"
    )
    
    func TestCompare(t *testing.T) { test2(t, compareTests, "Compare", Compare) }
    
    var compareTests = []testCase2[string, string, int]{
    	{"", "", 0},
    	{"x", "x", 0},
    	{"", "x", 0},
    	{"1", "1.1", 0},
    	{"go1", "go1.1", -1},
    	{"go1.5", "go1.6", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/tests/value_test.cc

      ASSERT_STREQ(value2.s(), "string2");
    }
    
    TEST(Test1, TestDict) {
      TaggedValue s1("test1");
      TaggedValue s2("test2");
      TaggedValue d = TaggedValue::Dict();
      d.dict()[s2] = TaggedValue(6.f);
      std::stringstream stream;
      stream << d;
      ASSERT_EQ(stream.str(), "{test2: 6, }");
    }
    
    namespace {
    TaggedValue add(TaggedValue args, TaggedValue kwargs) {
      if (args.type() == TaggedValue::TUPLE) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

            Description test1 = Description.createTestDescription(type, 'broken')
            Description test2 = Description.createTestDescription(type, 'ok')
            runNotifier.fireTestStarted(test1)
            runNotifier.fireTestStarted(test2)
            runNotifier.fireTestFailure(new Failure(test1, failure.rawFailure))
            runNotifier.fireTestFinished(test2)
            runNotifier.fireTestFinished(test1)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            def xml = new Node(null, 'classpath')
            classpath.store(xml)
    
            then:
            xml.classpathentry.collect { [path: it.@path, test: it.attributes.attribute.find { it.@name == 'test' }.@value] } == expectedEntries
    
            where:
            path1    | path2    | test1   | test2   | expectedEntries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/ZipHasherTest.groovy

            given:
            def jarfile = tmpDir.file("test.jar")
            createJarWithAttributes(jarfile, ["Implementation-Version": "1.0.0"])
    
            def jarfile2 = tmpDir.file("test2.jar")
            createJarWithAttributes(jarfile2, ["Implementation-Version": "1.0.1"])
    
            def hash1 = zipHasher.hash(snapshotContext(jarfile))
            def hash2 = zipHasher.hash(snapshotContext(jarfile2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top