Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 281 for tst2 (0.07 sec)

  1. platforms/documentation/docs/src/snippets/testing/testng-preserveorder/kotlin/src/test/java/org/gradle/testng/Test1.java

        }
    
        @Test
        public void test1() {
            System.out.println("Test1.test1()");
        }
    
        @Test(dependsOnMethods = {"test1"})
        public void test2() {
            System.out.println("Test1.test2()");
        }
    
        @AfterClass
        public void afterClass() {
            System.out.println("Test1.afterClass()");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 590 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

            outputContains("files 2: [test-lib.jar, a.jar, a-lib.jar, test-1.0.jar, b.jar, b-lib.jar, test2-1.0.jar")
            outputContains("files 3: [test-lib.jar, a.jar, a-lib.jar, test-1.0.jar, b.jar, b-lib.jar, test2-1.0.jar")
            outputContains("files 4: [test-lib.jar, a.jar, a-lib.jar, test-1.0.jar, b.jar, b-lib.jar, test2-1.0.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            activation = new ProfileActivation();
            performProfileActivation(parser.parse(options, new String[] {"-P", "test1,+test2,?test3,+?test4"}), activation);
            assertThat(activation.getRequiredActiveProfileIds(), containsInAnyOrder("test1", "test2"));
            assertThat(activation.getOptionalActiveProfileIds(), containsInAnyOrder("test3", "test4"));
    
            activation = new ProfileActivation();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. pkg/kubelet/config/mux_test.go

    			}
    		case "two":
    			if update.(string) != "test2" {
    				t.Errorf("Expected %s, Got %s", "test2", update)
    			}
    		default:
    			t.Errorf("Unexpected source, Got %s", update)
    		}
    		ch <- true
    		return nil
    	}))
    	source := mux.ChannelWithContext(ctx, "one")
    	source2 := mux.ChannelWithContext(ctx, "two")
    	source <- "test"
    	source2 <- "test2"
    	<-ch
    	<-ch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 20:02:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/sink_constant.mlir

            // CHECK: tf_device.cluster
            // CHECK-DAG: %[[CST2:.*]] = "tf.Const"{{.*}}2.0
            // CHECK-DAG: %[[CST3:.*]] = "tf.Const"{{.*}}3.0
            // CHECK-DAG: %[[CST4:.*]] = "tf.Const"{{.*}}4.0
            // CHECK-NOT:"tf.Const"
            // CHECK: %[[MUL1:.*]] = "tf.Mul"(%arg0, %[[CST2]])
            // CHECK-NEXT: %[[MUL2:.*]] = "tf.Mul"(%[[MUL1]], %[[CST2]])
            // CHECK-NEXT: %[[MUL3:.*]] = "tf.Mul"(%[[MUL2]], %[[CST3]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/testng-groupbyinstances/groovy/src/test/java/org/gradle/testng/TestFactory.java

        }
    
        @Test
        public void test1() {
            System.out.println("TestFactory[" + data + "].test1()");
        }
    
        @Test(dependsOnMethods = {"test1"})
        public void test2() {
            System.out.println("TestFactory[" + data + "].test2()");
        }
    
        @AfterClass
        public void afterClass() {
            System.out.println("TestFactory[" + data + "].afterClass()");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

            fileExtension = taskName
        }
    
        def "#taskName sorts by target file name"() {
    
            given:
            createDir('dir1') {
                file('test1.txt') << 'test1'
                file('test2.txt') << 'test2'
            }
            buildFile << """
            task ${taskName}(type: ${taskType}) {
                reproducibleFileOrder = true
                preserveFileTimestamps = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

            val resolver = tracingCodeResolver()
    
            val topLevelBlock = parseAsTopLevelBlock(
                """
                addAndConfigure("test") {
                    number = 123
                }
                justAdd("test2")
                complexValueOne = one(two("three"))
                complexValueOneFromUtils = utils.oneUtil()
                complexValueTwo = two("three")
                nested {
                    number = 456
                    add()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    			if _, ok := embedded.Underlying().(*types.TypeParam); ok {
    				return nil, fmt.Errorf("invalid embedded type %T", embedded)
    			}
    			tset2, err := computeTermSetInternal(embedded, seen, depth+1)
    			if err != nil {
    				return nil, err
    			}
    			tset.terms = tset.terms.intersect(tset2.terms)
    		}
    	case *types.Union:
    		// The term set of a union is the union of term sets of its terms.
    		tset.terms = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. test/fixedbugs/issue18595.go

    }
    type J interface {
    	M()
    }
    
    type T struct{}
    
    func (*T) M() {}
    
    func main() {
    	test1()
    	test2()
    }
    
    func test1() {
    	t := new(T)
    	var i1, i2 I
    	var j interface {
    		M()
    	}
    	i1 = t
    	j = t
    	i2 = j
    	if i1 != i2 {
    		panic("interfaces not equal")
    	}
    }
    
    func test2() {
    	t := new(T)
    	i1 := (I)(t)
    	i2 := (I)((interface {
    		M()
    	})((J)(t)))
    	if i1 != i2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:00:05 UTC 2017
    - 867 bytes
    - Viewed (0)
Back to top