Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for testSession (0.3 sec)

  1. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginSpec.groovy

                excludes = ['org.?joberstar']
                excludeClassLoaders = ['com.sun.*', 'org.fak?.*']
                includeNoLocationClasses = includeNoLocationClassesValue
                sessionId = 'testSession'
                dumpOnExit = false
                output = JacocoTaskExtension.Output.TCP_SERVER
                address = '1.1.1.1'
                port = 100
                classDumpDir = project.file('build/jacoco-dump')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoTaskExtensionSpec.groovy

                excludes = ['org.?joberstar']
                excludeClassLoaders = ['com.sun.*', 'org.fak?.*']
                includeNoLocationClasses = includeNoLocationClassesValue
                sessionId = 'testSession'
                dumpOnExit = false
                output = JacocoTaskExtension.Output.TCP_SERVER
                address = '1.1.1.1'
                port = 100
                classDumpDir = temporaryFolder.file('build/jacoco-dump')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/local.go

    package gover
    
    import (
    	"internal/goversion"
    	"runtime"
    	"strconv"
    )
    
    // TestVersion is initialized in the go command test binary
    // to be $TESTGO_VERSION, to allow tests to override the
    // go command's idea of its own version as returned by Local.
    var TestVersion string
    
    // Local returns the local Go version, the one implemented by this go command.
    func Local() string {
    	v, _ := local()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/images/images_test.go

    				ImageRepository:   gcrPrefix,
    				KubernetesVersion: testversion,
    			},
    		},
    		{
    			image:    constants.KubeControllerManager,
    			expected: GetGenericImage(gcrPrefix, "kube-controller-manager", expected),
    			cfg: &kubeadmapi.ClusterConfiguration{
    				ImageRepository:   gcrPrefix,
    				KubernetesVersion: testversion,
    			},
    		},
    		{
    			image:    constants.KubeScheduler,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	"k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    )
    
    const testVersion = "v6.19"
    
    func TestSetEntry(t *testing.T) {
    	fake := NewFake(testVersion)
    	version, err := fake.GetVersion()
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if version != testVersion {
    		t.Errorf("Unexpected version mismatch, expected: %s, got: %s", testVersion, version)
    	}
    	// create a set
    	set := &ipset.IPSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    					RemovedVersion:    version.MajorMinor(1, 28),
    					EnvOptions: []cel.EnvOption{
    						library.Test(library.TestVersion(0)),
    					},
    				},
    				{
    					IntroducedVersion: version.MajorMinor(1, 28),
    					EnvOptions: []cel.EnvOption{
    						library.Test(library.TestVersion(1)),
    					},
    				},
    			},
    		},
    		{
    			name: "library version 0 disabled, version 1 enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. cmd/version_test.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"testing"
    	"time"
    )
    
    func TestVersion(t *testing.T) {
    	Version = "2017-05-07T06:37:49Z"
    	_, err := time.Parse(time.RFC3339, Version)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 956 bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/OkHttpTest.kt

     * limitations under the License.
     */
    package okhttp3
    
    import assertk.assertThat
    import assertk.assertions.matches
    import org.junit.jupiter.api.Test
    
    class OkHttpTest {
      @Test
      fun testVersion() {
        assertThat(OkHttp.VERSION).matches(Regex("[0-9]+\\.[0-9]+\\.[0-9]+(-.+)?"))
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Dec 21 01:54:49 UTC 2023
    - 848 bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/ConscryptTest.kt

          }
        }
      }
    
      @Test
      fun testBuildIfSupported() {
        val actual = ConscryptPlatform.buildIfSupported()
        assertThat(actual).isNotNull()
      }
    
      @Test
      fun testVersion() {
        val version = Conscrypt.version()
    
        assertTrue(ConscryptPlatform.atLeastVersion(1, 4, 9))
        assertTrue(ConscryptPlatform.atLeastVersion(version.major()))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/version/version.go

    		if argOnlyFlag != "" {
    			fmt.Fprintf(os.Stderr, "go: 'go version' only accepts %s flag with arguments\n", argOnlyFlag)
    			base.SetExitStatus(2)
    			return
    		}
    		v := runtime.Version()
    		if gover.TestVersion != "" {
    			v = gover.TestVersion + " (TESTGO_VERSION)"
    		}
    		fmt.Printf("go version %s %s/%s\n", v, runtime.GOOS, runtime.GOARCH)
    		return
    	}
    
    	for _, arg := range args {
    		info, err := os.Stat(arg)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top