Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for xtest (0.18 sec)

  1. src/cmd/go/internal/load/test.go

    		pmain = nil
    	}
    	if ptest.Error != nil || ptest.Incomplete {
    		ptest = nil
    	}
    	if pxtest != nil && (pxtest.Error != nil || pxtest.Incomplete) {
    		pxtest = nil
    	}
    	return pmain, ptest, pxtest, err
    }
    
    // TestPackagesAndErrors returns three packages:
    //   - pmain, the package main corresponding to the test binary (running tests in ptest and pxtest).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. pkg/test/framework/test.go

    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    	// Deprecated: Tests should not make assumptions regarding number of networks.
    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    	// Resources created at this level will be in-scope for dumping when any descendant test fails.
    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    	}{
    		{"text", &C.text[0], C.ctext()},
    		{"data", &C.data[0], C.cdata()},
    	}
    	for _, test := range tests {
    		if test.a != test.b {
    			t.Errorf("%s: pointer mismatch: %v != %v", test.s, test.a, test.b)
    		}
    		if got := C.GoString(test.a); got != test.s {
    			t.Errorf("%s: points at %#v, want %#v", test.s, got, test.s)
    		}
    	}
    }
    
    // issues 8368 and 8441
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *
       * <p>In all cases, if {@code C} needs custom logic for testing serialization, you can add an
       * explicit {@code testSerializable()} test in the corresponding {@code CTest} class, and {@code
       * C} will be excluded from automated serialization test performed by this method.
       */
      @Test
      public void testSerializable() throws Exception {
        // TODO: when we use @BeforeClass, we can pay the cost of class path scanning only once.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. .github/workflows/build.yml

          - name: Run Checks
            run: ./gradlew test -Dtest.java.version=11
    
          - name: Publish Test Report
            if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'
            uses: mikepenz/action-junit-report@v4
            with:
              report_paths: '**/build/test-results/*/TEST-*.xml'
              check_name: OpenJDK 11 Test Report
    
          - name: Publish Test Results
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. cmd/import-boss/main.go

    		// Discard packages which represent the <pkg>.test result.  They don't seem
    		// to hold any interesting source info.
    		if strings.HasSuffix(pkg.PkgPath, ".test") {
    			klog.V(3).Infof("ignoring testbin pkg: %q", pkg.PkgPath)
    			continue
    		}
    
    		// Packages which end in "_test" have tests which use the special "_test"
    		// package suffix.  Packages which have test files must be tests.  Don't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. cluster/gce/config-test.sh

    export NODE_EXTRA_METADATA=${KUBE_NODE_EXTRA_METADATA:-${KUBE_EXTRA_METADATA:-}}
    
    NETWORK=${KUBE_GCE_NETWORK:-e2e-test-${USER}}
    if [[ "${CREATE_CUSTOM_NETWORK}" = true ]]; then
      SUBNETWORK=${SUBNETWORK:-${NETWORK}-custom-subnet}
    fi
    INSTANCE_PREFIX=${KUBE_GCE_INSTANCE_PREFIX:-e2e-test-${USER}}
    CLUSTER_NAME=${CLUSTER_NAME:-${INSTANCE_PREFIX}}
    MASTER_NAME="${INSTANCE_PREFIX}-master"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/smoke-test.sh

    #     fails.
    #   - Move copy-pasted code into reusable functions.
    #   - Continue running all checks after one fails.
    #   - Test service connectivity by running a test pod with an http server and
    #     exposing it as a service (rather than curl-ing from existing system
    #     services that don't serve http requests).
    #   - Add test retries for transient errors, such as:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/BUILD

            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/core/tpu:tpu_defs",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/strings",
            "@com_google_googletest//:gtest",
            "@com_google_googletest//:gtest_main",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Parser",
            "@llvm-project//mlir:Pass",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/go/internal/clean/clean.go

    	_obj/            old object directory, left from Makefiles
    	_test/           old test directory, left from Makefiles
    	_testmain.go     old gotest file, left from Makefiles
    	test.out         old test log, left from Makefiles
    	build.out        old test log, left from Makefiles
    	*.[568ao]        object files, left from Makefiles
    
    	DIR(.exe)        from go build
    	DIR.test(.exe)   from go test -c
    	MAINFILE(.exe)   from go build MAINFILE.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top