Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 806 for TestTd (0.12 sec)

  1. src/crypto/x509/platform_test.go

    const (
    	rootCertPath = "platform_root_cert.pem"
    	rootKeyPath  = "platform_root_key.pem"
    )
    
    func TestPlatformVerifier(t *testing.T) {
    	if runtime.GOOS != "windows" && runtime.GOOS != "darwin" {
    		t.Skip("only tested on windows and darwin")
    	}
    
    	der, err := os.ReadFile(rootCertPath)
    	if err != nil {
    		t.Fatalf("failed to read test root: %s", err)
    	}
    	b, _ := pem.Decode(der)
    	testRoot, err := ParseCertificate(b.Bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 17:18:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                action.run()
            }
    
            !models.mayRunInParallel
            models.projects.path == [':', ':a', ':b']
        }
    
        @TargetGradleVersion(">=3.4")
        def "nested action can run further nested actions"() {
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'
            """
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

            getCallableSymbols(names.toList())
    
        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/limit_test.go

    			DoRaw(context.TODO())
    		if !apierrors.IsRequestEntityTooLargeError(err) {
    			t.Errorf("expected too large error, got %v", err)
    		}
    	})
    
    	// Create YAML just under 3MB limit, nested
    	t.Run("create YAML doc under limit, nested", func(t *testing.T) {
    		if testing.Short() {
    			t.Skip("skipping expensive test")
    		}
    		yamlBody := []byte(fmt.Sprintf(`
    	apiVersion: %s
    	kind: %s
    	metadata:
    	  name: test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

            File workingDirectory = invocationSpec.getWorkingDirectory();
            workingDirectory.mkdirs();
            copyTemplateTo(experiment, workingDirectory);
    
            doRun(testId, experiment, results);
        }
    
        protected abstract void doRun(String testId, BuildExperimentSpec experiment, MeasuredOperationList results);
    
        private static void copyTemplateTo(BuildExperimentSpec experiment, File workingDir) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuiteSpec.java

    @Incubating
    public interface TestSuiteSpec extends GeneralComponentSpec {
        /**
         * The tested component.
         */
        ComponentSpec getTestedComponent();
    
        /**
         * Sets the tested component.
         * @param testedComponent the component under test
         */
        void setTestedComponent(ComponentSpec testedComponent);
    
        /**
         * Sets the tested component.
         * @param testedComponent the component under test
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/lex_test.go

    			"C",
    		),
    		"C.\n",
    	},
    	{
    		"nested #define",
    		lines(
    			"#define A #define B THIS",
    			"A",
    			"B",
    		),
    		"THIS.\n",
    	},
    	{
    		"nested #define with args",
    		lines(
    			"#define A #define B(x) x",
    			"A",
    			"B(THIS)",
    		),
    		"THIS.\n",
    	},
    	/* This one fails. See comment in Slice.Col.
    	{
    		"nested #define with args",
    		lines(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/validation_test.go

    			required("embedded", "apiVersion"),
    			required("embedded", "kind"),
    		}},
    		{name: "nested", object: `
    {
      "nested": {
        "embedded": {}
      }
    }`, errors: []validationMatch{
    			required("nested", "apiVersion"),
    			required("nested", "kind"),
    			required("nested", "embedded", "apiVersion"),
    			required("nested", "embedded", "kind"),
    		}},
    		{name: "items", object: `
    {
      "items": [{}]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirector.java

            redirector.stop();
        }
    
        public void setOutputOwner(Object testId) {
            assert testId != null;
            if (System.out != null) {
                System.out.flush();
            }
            if (System.err != null) {
                System.err.flush();
            }
            outForwarder.outputOwner = testId;
            errForwarder.outputOwner = testId;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/KryoBackedEncoder.java

            output.writeString(value);
        }
    
        @Override
        public void encodeChunked(EncodeAction<Encoder> writeAction) throws Exception {
            if (nested == null) {
                nested = new KryoBackedEncoder(new OutputStream() {
                    @Override
                    public void write(byte[] buffer, int offset, int length) {
                        if (length == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top