Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for tester (0.12 sec)

  1. pkg/controller/volume/persistentvolume/binder_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            testSyncVolume,
    		},
    	}
    	_, ctx := ktesting.NewTestContext(t)
    	runSyncTests(t, ctx, tests, []*storage.StorageClass{}, []*v1.Pod{})
    }
    
    // Test multiple calls to syncClaim/syncVolume and periodic sync of all
    // volume/claims. The test follows this pattern:
    //  0. Load the controller with initial data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    					// Such as: `throw("Concurrent map iteration and map writing")`.
    					// When this test ends quietly, no data race error occurs.
    					// Otherwise, the test process exits automatically and prints all goroutine call stacks.
    					test.testfunc(mimpl)
    				}
    			}()
    			wg.Wait()
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    		switch goos {
    		case "android":
    			return true
    		case "dragonfly":
    			// It seems that on Dragonfly thread local storage is
    			// set up by the dynamic linker, so internal cgo linking
    			// doesn't work. Test case is "go test runtime/cgo".
    			return true
    		}
    	}
    
    	switch goos {
    	case "android":
    		if goarch != "arm64" {
    			return true
    		}
    	case "ios":
    		if goarch == "arm64" {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package iptables
    
    //
    // NOTE: this needs to be tested in e2e since it uses iptables for everything.
    //
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"encoding/base32"
    	"fmt"
    	"net"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    		case err == nil && n != int64(test.length):
    			t.Errorf("Test %d: %d bytes were expected, but %d were written", i, test.length, n)
    		case err == nil && !bytes.Equal(data[test.offset:test.offset+test.length], buffer):
    			t.Errorf("Test %d: Expected bytes: %v, but got: %v", i, data[test.offset:test.offset+test.length], buffer)
    		case err != nil && err != test.expError:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. tests/query_test.go

    		t.Fatalf("Build NOT condition, but got %v", result.Statement.SQL.String())
    	}
    }
    
    func TestOr(t *testing.T) {
    	dryDB := DB.Session(&gorm.Session{DryRun: true})
    
    	var count int64
    	result := dryDB.Model(&User{}).Or("role = ?", "admin").Count(&count)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    		if got := x.Signbit(); got != test.signbit {
    			t.Errorf("(%s).Signbit() = %v; want %v", test.x, got, test.signbit)
    		}
    		if got := x.Sign(); got != test.sign {
    			t.Errorf("(%s).Sign() = %d; want %d", test.x, got, test.sign)
    		}
    		if got := x.IsInf(); got != test.inf {
    			t.Errorf("(%s).IsInf() = %v; want %v", test.x, got, test.inf)
    		}
    	}
    }
    
    func TestFloatIsInt(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // `[<scheme>://]<path>` where `<scheme>` is optional (if missing, we are
    // accessing local paths). This test suite tests exactly one scheme for each
    // invocation. By default, we are testing all schemes available but this can be
    // restricted by using `--schemes` to specify a set of schemes to test.
    //
    // Example invocation:
    //  bazel test //tensorflow/c/experimental/filesystem:modular_filesystem_test \\
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    include::{snippetsPath}/native-binaries/cunit/tests/buildDependentComponentsReport.out[]
    ----
    
    Furthermore, the `--non-binaries` option shows non-buildable binaries in the report, `--no-non-buildable` hides them.
    Similarly, the `--test-suites` option shows test suites and `--no-test-suites` hides them.
    The option `--no-all` hides both non-buildable binaries and test suites from the report.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    )
    
    // Test is the main entrypoint that runs tests in the GOROOT/test directory.
    //
    // Each .go file test case in GOROOT/test is registered as a subtest with a
    // a full name like "Test/fixedbugs/bug000.go" ('/'-separated relative path).
    func Test(t *testing.T) {
    	if *target != "" {
    		// When -target is set, propagate it to GOOS/GOARCH in our environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top