Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 162 for xtest (0.15 sec)

  1. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	return etcdVer.String()
    }
    
    const fakeCurrentCoreDNSVersion = "1.0.6"
    
    func TestGetAvailableUpgrades(t *testing.T) {
    
    	// constansts for test cases
    	// variables are in the form v{MAJOR}{MINOR}{PATCH}, where MINOR is a variable so test are automatically uptodate to the latest MinimumControlPlaneVersion/
    
    	// v1.X series, e.g. v1.14
    	v1X0 := versionutil.MustParseSemantic("v1.14.0")
    	v1X5 := v1X0.WithPatch(5)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/net/http/request_test.go

    	} {
    		t.Run(test.name,
    			func(t *testing.T) {
    				req := &Request{
    					Method: "POST",
    					Header: test.contentType,
    					Body:   io.NopCloser(strings.NewReader("body")),
    				}
    				err := req.ParseForm()
    				switch {
    				case err == nil && test.wantErr != "":
    					t.Errorf("unexpected success; want error %q", test.wantErr)
    				case err != nil && test.wantErr == "":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/prometheus"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

              }
            };
        AssertionError actual = null;
        try {
          tester.test();
        } catch (AssertionError e) {
          actual = e;
        }
        assertNotNull("verify() should be able to cause test failure", actual);
        assertTrue(
            "AssertionError should have info about why test failed",
            actual.getCause().getMessage().contains(message));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

         * a given test task is running does not allow reflection of JDK internals by default.
         * Needed when using ProjectBuilder in tests.
         */
        private static class AddOpensCommandLineArgumentProvider implements CommandLineArgumentProvider {
            private final Test test;
    
            private AddOpensCommandLineArgumentProvider(Test test) {
                this.test = test;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. cni/pkg/install/cniconfig_test.go

    package install
    
    import (
    	"context"
    	"os"
    	"path/filepath"
    	"testing"
    	"time"
    
    	"istio.io/istio/cni/pkg/config"
    	testutils "istio.io/istio/pilot/test/util"
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestGetDefaultCNINetwork(t *testing.T) {
    	tempDir := t.TempDir()
    
    	cases := []struct {
    		name            string
    		dir             string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/plugin/ScriptPluginClassLoadingIntegrationTest.groovy

    package org.gradle.plugin
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import org.gradle.test.fixtures.plugin.PluginBuilder
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import spock.lang.Issue
    
    import static org.gradle.util.Matchers.containsText
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			err := mgr.CleanupDirs()
    			if err != nil {
    				t.Errorf("unexpected error cleaning up: %v", err)
    			}
    
    			if _, err := os.Stat(tempManifestDir); !os.IsNotExist(err) {
    				t.Errorf("%q should not have existed", tempManifestDir)
    			}
    			_, err = os.Stat(backupManifestDir)
    			if test.keepManifest {
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/gcimporter_test.go

    			continue
    		}
    
    		obj := pkg.Scope().Lookup(objName)
    		if obj == nil {
    			t.Errorf("%s: object not found", test.name)
    			continue
    		}
    
    		got := types.ObjectString(obj, types.RelativeTo(pkg))
    		if got != test.want {
    			t.Errorf("%s: got %q; want %q", test.name, got, test.want)
    		}
    
    		if named, _ := obj.Type().(*types.Named); named != nil {
    			verifyInterfaceMethodRecvs(t, named, 0)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            AdditionalClasspath additional,
            boolean isModule
        ) {
            DeprecationLogger.deprecateIndirectUsage("The automatic loading of test framework implementation dependencies")
                .withAdvice("Declare the desired test framework directly on the test suite or explicitly declare the test framework implementation dependencies on the test's runtime classpath.")
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top