Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for testTarget (0.23 sec)

  1. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                        <source>${jdkVersion}</source>
                        <target>${jdkVersion}</target>
                        <testSource>${jdkVersion}</testSource>
                        <testTarget>${jdkVersion}</testTarget>
                        <compilerVersion>1.5</compilerVersion>
                        <showDeprecation>true</showDeprecation>
                        <showWarnings>true</showWarnings>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                        <source>${jdkVersion}</source>
                        <target>${jdkVersion}</target>
                        <testSource>${jdkVersion}</testSource>
                        <testTarget>${jdkVersion}</testTarget>
                        <compilerVersion>1.5</compilerVersion>
                        <showDeprecation>true</showDeprecation>
                        <showWarnings>true</showWarnings>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

                .publish()
    
            buildFile << """
    dependencies {
        conf 'test:target:1.0'
    }
    """
            expect:
            succeeds 'checkDep'
            resolve.expectDefaultConfiguration("runtime")
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module('test:target:1.0') {
                        module('test:test5:1.0') {
                            module('test:test1:1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			}
    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, in particular, too-far
    // conditional branches are fixed, and also verify that the
    // instruction's pc can be correctly aligned even when branches
    // need to be fixed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/runlit.site.cfg.py

        'tensorflow/dtensor/mlir/tests',
    ]
    config.mlir_tf_tools_dirs = [
        os.path.join(real_test_srcdir, os.environ['TEST_WORKSPACE'], s)
        for s in mlir_tf_tools_dirs
    ]
    test_dir = os.environ['TEST_TARGET']
    test_dir = test_dir.strip('/').rsplit(':', 1)[0]
    config.mlir_test_dir = os.path.join(real_test_srcdir,
                                        os.environ['TEST_WORKSPACE'], test_dir)
    
    if platform.system() == 'Windows':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

      into 'libs'
    }
    """
    
            expect:
            fails 'retrieve'
            failure.assertHasCause("Could not resolve test:target:1.0.\nRequired by:\n    project :")
            failure.assertHasCause("A dependency was declared on configuration 'x86_windows' which is not declared in the descriptor for test:target:1.0.")
        }
    
        def "fails when ivy module references a configuration that does not exist"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm_test.go

    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, and branches which exceed the
    // range of BC are rewritten to reach.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	dir, err := os.MkdirTemp("", "testlarge")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/crypto/md5/md5_test.go

    		if actual, actual2 := h.Sum(nil), h2.Sum(nil); !bytes.Equal(actual, actual2) {
    			t.Errorf("md5(%q) = 0x%x != marshaled 0x%x", g.in, actual, actual2)
    		}
    	}
    }
    
    func TestLarge(t *testing.T) {
    	const N = 10000
    	ok := "2bb571599a4180e1d542f76904adc3df" // md5sum of "0123456789" * 1000
    	block := make([]byte, 10004)
    	c := New()
    	for offset := 0; offset < 4; offset++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  9. src/internal/zstd/zstd_test.go

    	if zstdBigErr != nil {
    		t.Fatal(zstdBigErr)
    	}
    	return zstdBigBytes
    }
    
    // Test decompressing a large file. We don't have a compressor,
    // so this test only runs on systems with zstd installed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping expensive test in short mode")
    	}
    
    	data := bigData(t)
    	compressed := zstdBigData(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	{`protobuf:"PB(1,2)" json:"name"`, `protobuf`, `PB(1,2)`},
    	{`k0:"values contain spaces" k1:"and\ttabs"`, "k0", "values contain spaces"},
    	{`k0:"values contain spaces" k1:"and\ttabs"`, "k1", "and\ttabs"},
    }
    
    func TestTagGet(t *testing.T) {
    	for _, tt := range tagGetTests {
    		if v := tt.Tag.Get(tt.Key); v != tt.Value {
    			t.Errorf("StructTag(%#q).Get(%#q) = %#q, want %#q", tt.Tag, tt.Key, v, tt.Value)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top