Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,000 for pass2 (0.3 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            "pass and Other" | ["test", "--tests", "*.pass1", "--tests", "*OtherTest*"] | ["Foo1Test", "OtherTest"]                        | ["pass1"]         | []                | []               | ["bar", "pass3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

                        .assertStderr(allOf(containsString("err.fail"), containsString("err.fail2"), containsString("err.pass"), containsString("err.pass2")))
                        .assertStderr(not(containsString("out.")))
                        .assertStdout(allOf(containsString("out.fail"), containsString("out.fail2"), containsString("out.pass"), containsString("out.pass2")))
                        .assertStdout(not(containsString("err.")))
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

                    ATestClassWithSeveralMethods.name + ".pass2"] as Set, [] as Set, [] as Set)
    
            when:
            process(ATestClassWithSeveralMethods)
    
            then:
            1 * processor.started({ it.name == ATestClassWithSeveralMethods.name }, _)
            1 * processor.started({ it.name == "pass" && it.className == ATestClassWithSeveralMethods.name }, _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  4. pkg/credentialprovider/plugin/plugin_test.go

    				"image1": {
    					Username: "user1",
    					Password: "pass1",
    				},
    			},
    			cacheEntry: cacheEntry{
    				key:       "image1",
    				expiresAt: fakeClock.Now().Add(1 * time.Minute),
    				credentials: map[string]credentialprovider.DockerConfigEntry{
    					"image1": {
    						Username: "user1",
    						Password: "pass1",
    					},
    				},
    			},
    		},
    
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu-dynamic-layout-pass.mlir

    // RUN: tf-opt %s -split-input-file -tf-tpu-dynamic-layout-pass | FileCheck %s
    
    // Tests that the pass can transform non-replicated execution.
    
    // CHECK: func @non_replicated(%[[ARG0:.*]]: tensor<*x!tf_type.resource> {tf.device = "/device:CPU:0"}) -> tensor<i32>
    func.func @non_replicated(%arg0: tensor<*x!tf_type.resource> {tf.device = "/device:CPU:0"}) -> tensor<i32> {
      // CHECK: %[[COMPILE:.*]]:2 = "tf_device.launch"
      // CHECK-NEXT: "tf._TPUCompileMlir"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  6. src/crypto/tls/bogo_config.json

            "IgnoreClientVersionOrder": "TODO: first pass, this should be fixed",
            "SupportedVersionSelection-TLS12": "TODO: first pass, this should be fixed",
            "MajorVersionTolerance": "TODO: first pass, this should be fixed",
            "DuplicateExtensionServer-TLS-TLS1": "TODO: first pass, this should be fixed",
            "DuplicateExtensionClient-TLS-TLS1": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    				checkExampleName(pass, fn)
    				checkExampleOutput(pass, fn, f.Comments)
    			case strings.HasPrefix(fn.Name.Name, "Test"):
    				checkTest(pass, fn, "Test")
    			case strings.HasPrefix(fn.Name.Name, "Benchmark"):
    				checkTest(pass, fn, "Benchmark")
    			case strings.HasPrefix(fn.Name.Name, "Fuzz"):
    				checkTest(pass, fn, "Fuzz")
    				checkFuzz(pass, fn)
    			}
    		}
    	}
    	return nil, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    		call := n.(*ast.CallExpr)
    		fn, kind := printfNameAndKind(pass, call)
    		switch kind {
    		case KindPrintf, KindErrorf:
    			checkPrintf(pass, kind, call, fn)
    		case KindPrint:
    			checkPrint(pass, call, fn)
    		}
    	})
    }
    
    func printfNameAndKind(pass *analysis.Pass, call *ast.CallExpr) (fn *types.Func, kind Kind) {
    	fn, _ = typeutil.Callee(pass.TypesInfo, call).(*types.Func)
    	if fn == nil {
    		return nil, 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates a pass which is responsible for legalizing TensorFlow variables to
    // TensorFlow Lite variables.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeVariablesPass();
    
    // Creates a pass which analyze the model whether it is safe to use
    // native TFLite variables or not.
    std::unique_ptr<OperationPass<ModuleOp>> CreateAnalyzeVariablesPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/testdata/framebig.json

    {"Action":"pass","Test":"TestIndexRandom"}
    {"Action":"pass","Test":"TestIndexRandom"}
    {"Action":"output","Test":"TestIndexRandom","Output":"=== PASS  TestIndexRandom\n"}
    {"Action":"run","Test":"TestIndexRune"}
    {"Action":"output","Test":"TestIndexRune","Output":"=== RUN   TestIndexRune\n"}
    {"Action":"output","Test":"TestIndexRune","Output":"--- PASS: TestIndexRune (0.00s)\n"}
    {"Action":"pass","Test":"TestIndexRune"}
    {"Action":"pass","Test":"TestIndexRune"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.2K bytes
    - Viewed (0)
Back to top