Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for setIws (0.12 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This flag enables using colors in terminal output. Available values are
    // "yes" to enable colors, "no" (disable colors), or "auto" (the default)
    // to let Google Test decide.
    GTEST_DECLARE_string_(color);
    
    // This flag sets up the filter to select by name using a glob pattern
    // the tests to run. If the filter is not given all tests are executed.
    GTEST_DECLARE_string_(filter);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    	expected := sets.NewString(testRSSpec1.Name)
    	for _, name := range expected.List() {
    		t.Logf("Expecting update for %+v", name)
    		select {
    		case got := <-received:
    			if !expected.Has(got) {
    				t.Errorf("Expected keys %#v got %v", expected, got)
    			}
    		case <-time.After(wait.ForeverTestTimeout):
    			t.Errorf("Expected update notifications for replica sets")
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This flag enables using colors in terminal output. Available values are
    // "yes" to enable colors, "no" (disable colors), or "auto" (the default)
    // to let Google Test decide.
    GTEST_DECLARE_string_(color);
    
    // This flag sets up the filter to select by name using a glob pattern
    // the tests to run. If the filter is not given all tests are executed.
    GTEST_DECLARE_string_(filter);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    // `g` will be returned. Else, an unspecified subset.
    //
    // If successful, returns the number of TF_Function* successfully set in
    // `funcs` and sets status to OK. The caller takes ownership of
    // all the returned TF_Functions. They must be deleted with TF_DeleteFunction.
    // On error, returns 0, sets status to the encountered error, and the contents
    // of funcs will be undefined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    	}
    
    	// Initialize byte pool once for all sets, bpool size is set to
    	// setCount * setDriveCount with each memory upto blockSizeV2.
    	buffers := bpool.NewBytePoolCap(n, blockSizeV2, blockSizeV2*2)
    	if n >= 16384 {
    		// pre-populate buffers only n >= 16384 which is (32Gi/2Mi)
    		// for all setups smaller than this avoid pre-alloc.
    		buffers.Populate()
    	}
    	globalBytePoolCap.Store(buffers)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. tensorflow/c/kernels_test.cc

        EXPECT_EQ("bunny", string(static_cast<const char*>(val.get()), 5));
        TF_DeleteStatus(status);
        return static_cast<void*>(s);
      };
    
      AttrValue v;
      v.set_s("bunny");
      CreateAndCallKernelWithAttr(my_create_func, "TestKernelAttrString", v);
    }
    
    TEST_F(TestKernelAttr, StringList) {
      auto my_create_func = [](TF_OpKernelConstruction* ctx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

      && a.Val() == 0
      && c.Val() == 0
      && setPos(v, x.Pos)
      && clobber(x)
      => (MOVOstoreconst [makeValAndOff(0,a.Off())] {s} p0 mem)
    (MOVQstoreconst [a] {s} p0 x:(MOVQstoreconst [c] {s} p1 mem))
      && config.useSSE
      && x.Uses == 1
      && sequentialAddresses(p0, p1, int64(a.Off()+8-c.Off()))
      && a.Val() == 0
      && c.Val() == 0
      && setPos(v, x.Pos)
      && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	if v < 0 {
    		return false
    	}
    	if (v & 0xFFF) == 0 {
    		v >>= 12
    	}
    	return v <= 0xFFF
    }
    
    // setPos sets the position of v to pos, then returns true.
    // Useful for setting the result of a rewrite's position to
    // something other than the default.
    func setPos(v *Value, pos src.XPos) bool {
    	v.Pos = pos
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    		return nil, nil, err
    	}
    
    	// Wait up to 10 seconds for disks to come online.
    	pools := obj.(*erasureServerPools)
    	t := time.Now()
    	for _, pool := range pools.serverPools {
    		for _, sets := range pool.erasureDisks {
    			for _, s := range sets {
    				if !s.IsLocal() {
    					for {
    						if s.IsOnline() {
    							break
    						}
    						time.Sleep(100 * time.Millisecond)
    						if time.Since(t) > 10*time.Second {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    		// now, if not done yet.
    		CalcSize(t)
    	}
    	return t.allMethods.Slice()
    }
    
    // SetMethods sets the direct method set for type t (i.e., *not*
    // including promoted methods from embedded types).
    func (t *Type) SetMethods(fs []*Field) {
    	t.methods.Set(fs)
    }
    
    // SetAllMethods sets the set of all methods for type t (i.e.,
    // including promoted methods from embedded types).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top