Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 562 for rctest (0.07 sec)

  1. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/build.gradle

    plugins {
        id 'xctest'
    }
    
    // tag::test-filtering[]
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // include all tests from test class
                filter.includeTestsMatching "SomeIntegTest.*" // or `"Testing.SomeIntegTest.*"` on macOS
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 319 bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Model classes for the XCTest plugins.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 713 bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Plugins for XCTest testing.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 711 bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/PACTest.java

    import org.junit.Assert;
    import org.junit.Test;
    
    import jcifs.pac.PACDecodingException;
    import jcifs.pac.PacMac;
    import jcifs.util.Hexdump;
    
    
    /**
     * @author mbechler
     *
     */
    @SuppressWarnings ( {
        "nls", "javadoc", "restriction"
    } )
    public class PACTest {
    
        @Test
        public void testNFold () {
            // rfc3961 test vectors
            verifyNfold(64, "012345", "be072631276b1955");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    	"testing"
    )
    
    var Hosts = []string{
    	"vcs-test.golang.org",
    }
    
    type Server struct {
    	vcweb   *vcweb.Server
    	workDir string
    	HTTP    *httptest.Server
    	HTTPS   *httptest.Server
    }
    
    // NewServer returns a new test-local vcweb server that serves VCS requests
    // for modules with paths that begin with "vcs-test.golang.org" using the
    // scripts in cmd/go/testdata/vcstest.
    func NewServer() (srv *Server, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. src/go/build/testdata/directives/c_test.go

    //go:xtest1
    
    package p_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 42 bytes
    - Viewed (0)
  7. src/go/build/testdata/doc/a_test.go

    jimmyfrasche <******@****.***> 1519513438 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 36 bytes
    - Viewed (0)
  8. src/internal/trace/gc_test.go

    		// utilizations.
    		if len(worst) != len(test.worst) {
    			t.Errorf("for %s window, want worst %v, got %v", test.window, test.worst, worst)
    		} else {
    			for i := range worst {
    				if worst[i].MutatorUtil != test.worst[i] {
    					t.Errorf("for %s window, want worst %v, got %v", test.window, test.worst, worst)
    					break
    				}
    			}
    		}
    	}
    }
    
    func TestMMUTrace(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/dwtest/dwtest.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dwtest
    
    import (
    	"debug/dwarf"
    	"errors"
    	"fmt"
    	"os"
    )
    
    // Helper type for supporting queries on DIEs within a DWARF
    // .debug_info section. Invoke the populate() method below passing in
    // a dwarf.Reader, which will read in all DIEs and keep track of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/apis/abac/latest/latest.go

    limitations under the License.
    */
    
    package latest
    
    import (
    	//Init the abac api package
    	_ "k8s.io/kubernetes/pkg/apis/abac"
    	_ "k8s.io/kubernetes/pkg/apis/abac/v0"
    	_ "k8s.io/kubernetes/pkg/apis/abac/v1beta1"
    )
    
    // TODO: this file is totally wrong, it should look like other latest files.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 08:30:35 UTC 2019
    - 919 bytes
    - Viewed (0)
Back to top