Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 112 for TestTd (0.12 sec)

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

    	"k8s.io/component-helpers/storage/volume"
    	"k8s.io/klog/v2/ktesting"
    )
    
    // Test single call to syncClaim and syncVolume methods.
    //  1. Fill in the controller with initial data
    //  2. Call the tested function (syncClaim/syncVolume) via
    //     controllerTest.testCall *once*.
    //  3. Compare resulting volumes and claims with expected volumes and claims.
    func TestSync(t *testing.T) {
    	labels := map[string]string{
    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

    	}
    	activePods := func() []*v1.Pod {
    		return []*v1.Pod{}
    	}
    
    	// test steady state, initialization where sourcesReady, containerMap and containerRunningSet
    	// are relevant will be tested with a different flow
    	err = w.Start(activePods, &sourcesReadyStub{}, containermap.NewContainerMap(), sets.New[string]())
    	require.NoError(t, err)
    
    	return w, updateChan
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        // CHECK: tf_executor.fetch
        tf_executor.fetch
      }
      // CHECK: return
      func.return
    }
    
    // -----
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Test nested while ops.
    
    // CHECK-LABEL: func @nested_loop_while_body_inner
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    	if t.cgoEnabled {
    		// Building cmd/cgo/internal/test takes a long time.
    		// There are already cgo-enabled packages being tested with the race detector.
    		// We shouldn't need to redo all of cmd/cgo/internal/test too.
    		// The race builder will take care of this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/math/big/float_test.go

    		// prec at upper limit
    		{"0", MaxPrec, "0", Exact},
    		{"-0", MaxPrec, "-0", Exact},
    		{"-Inf", MaxPrec, "-Inf", Exact},
    		{"+Inf", MaxPrec, "+Inf", Exact},
    
    		// just a few regular cases - general rounding is tested elsewhere
    		{"1.5", 1, "2", Above},
    		{"-1.5", 1, "-2", Below},
    		{"123", 1e6, "123", Exact},
    		{"-123", 1e6, "-123", Exact},
    	} {
    		x := makeFloat(test.x).SetPrec(test.prec)
    		prec := test.prec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      status = read_file->Read(0, test_data.size() + 1, &result, scratch);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OUT_OF_RANGE);
    }
    
    // The URI schemes that need to be tested are provided by the user via flags
    // (or, if none is supplied, all existing schemes are used). As a scheme can
    // become available after a shared object with a filesystem implementation is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    | http://gcc.gnu.org/[GCC] with http://www.mingw.org/[MinGW] and https://mingw-w64.org/doku.php[MinGW64]
    | Windows XP and later.
    |===
    
    The following tool chains are unofficially supported. They generally work fine, but are not tested continuously:
    
    [%header%autowidth,compact]
    |===
    | Operating System | Tool Chain | Notes
    
    | macOS
    | http://gcc.gnu.org/[GCC] from Macports
    |
    
    | macOS
    | http://clang.llvm.org[Clang] from Macports
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    				// v2 = OpConst64 [7]
    				// v3 = OpConst64 [42]
    				//
    				// v4 = OpPhi(v1, v2, v3)
    				//
    				// We can prove:
    				//
    				// v4 >= 7 && v4 <= 42
    				//
    				// TODO(jake-ciolek): Handle nested constant OpPhi's
    				sameConstOp := true
    				min := 0
    				max := 0
    
    				if !v.Args[min].isGenericIntConst() {
    					break
    				}
    
    				for k := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. cmd/xl-storage_test.go

    }
    
    // TestXLStorageReadFile with bitrot verification - tests the xlStorage level
    // ReadFile API with a BitrotVerifier. Only tests hashing related
    // functionality. Other functionality is tested with
    // TestXLStorageReadFile.
    func TestXLStorageReadFileWithVerify(t *testing.T) {
    	volume, object := "test-vol", "myobject"
    	xlStorage, _, err := newXLStorageTestSetup(t)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  10. 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)
Back to top