Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,902 for testOrg (0.17 sec)

  1. src/go/doc/testdata/testing.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package testing provides support for automated testing of Go packages.
    // It is intended to be used in concert with the “go test” utility, which automates
    // execution of any function of the form
    //     func TestXxx(*testing.T)
    // where Xxx can be any alphanumeric string (but the first letter must not be in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/testing/testing.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"reflect"
    	"strconv"
    	"sync"
    
    	"github.com/google/go-cmp/cmp"
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/testing-pyramid.png

    testing-pyramid.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/testing.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapContainsKeyTester;
    import com.google.common.collect.testing.testers.MapContainsValueTester;
    import com.google.common.collect.testing.testers.MapCreationTester;
    import com.google.common.collect.testing.testers.MapEntrySetTester;
    import com.google.common.collect.testing.testers.MapEqualsTester;
    import com.google.common.collect.testing.testers.MapForEachTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.MapEntrySetTester;
    import com.google.common.collect.testing.testers.MapEqualsTester;
    import com.google.common.collect.testing.testers.MapGetTester;
    import com.google.common.collect.testing.testers.MapHashCodeTester;
    import com.google.common.collect.testing.testers.MapIsEmptyTester;
    import com.google.common.collect.testing.testers.MapPutAllTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/runtime/crash_test.go

    	if testprog.target == nil {
    		testprog.target = make(map[string]*buildexe)
    	}
    	name := binary
    	if len(flags) > 0 {
    		name += "_" + strings.Join(flags, "_")
    	}
    	target, ok := testprog.target[name]
    	if !ok {
    		target = &buildexe{}
    		testprog.target[name] = target
    	}
    
    	dir := testprog.dir
    
    	// Unlock testprog while actually building, so that other
    	// tests can look up executables that were already built.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        List<Class<? extends AbstractTester>> testers = Helpers.copyToList(super.getTesters());
        testers.add(CollectionSerializationEqualTester.class);
        testers.add(MultisetAddTester.class);
        testers.add(MultisetContainsTester.class);
        testers.add(MultisetCountTester.class);
        testers.add(MultisetElementSetTester.class);
        testers.add(MultisetEqualsTester.class);
        testers.add(MultisetReadsTester.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        List<Class<? extends AbstractTester>> testers = Helpers.copyToList(super.getTesters());
        testers.add(CollectionSerializationEqualTester.class);
        testers.add(MultisetAddTester.class);
        testers.add(MultisetContainsTester.class);
        testers.add(MultisetCountTester.class);
        testers.add(MultisetElementSetTester.class);
        testers.add(MultisetEqualsTester.class);
        testers.add(MultisetForEachEntryTester.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/strconv/atoi_test.go

    			}
    		}
    	case 64:
    		for i := range parseInt64Tests {
    			test := &parseInt64Tests[i]
    			out, err := Atoi(test.in)
    			var testErr error
    			if test.err != nil {
    				testErr = &NumError{"Atoi", test.in, test.err.(*NumError).Err}
    			}
    			if test.out != int64(out) || !reflect.DeepEqual(testErr, err) {
    				t.Errorf("Atoi(%q) = %v, %v want %v, %v",
    					test.in, out, err, test.out, testErr)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top