Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 283 for makeID (0.21 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      internal::scoped_ptr< ::std::string> message_;
    
      GTEST_DISALLOW_ASSIGN_(AssertionResult);
    };
    
    // Makes a successful assertion result.
    GTEST_API_ AssertionResult AssertionSuccess();
    
    // Makes a failed assertion result.
    GTEST_API_ AssertionResult AssertionFailure();
    
    // Makes a failed assertion result with the given failure message.
    // Deprecated; use AssertionFailure() << msg.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    func getDestRuleSubsets(subsets []*v1alpha3.Subset, podsLabels []klabels.Set) ([]string, []string) {
    	matchingSubsets := make([]string, 0, len(subsets))
    	nonmatchingSubsets := make([]string, 0, len(subsets))
    	for _, subset := range subsets {
    		subsetSelector := klabels.SelectorFromSet(subset.Labels)
    		if matchesAnyPod(subsetSelector, podsLabels) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    	q.buf[q.end%len(q.buf)] = value
    	q.end++
    }
    
    // grow increases the size of the queue.
    func (q *queue[T]) grow() {
    	if len(q.buf) == 0 {
    		q.buf = make([]T, 2)
    		return
    	}
    
    	// Create new buf and copy data over.
    	newBuf := make([]T, len(q.buf)*2)
    	pivot := q.start % len(q.buf)
    	first, last := q.buf[pivot:], q.buf[:pivot]
    	copy(newBuf[:len(first)], first)
    	copy(newBuf[len(first):], last)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    	}()
    	allNodePluginScores := make([]framework.NodePluginScores, len(nodes))
    	numPlugins := len(f.scorePlugins)
    	plugins := make([]framework.ScorePlugin, 0, numPlugins)
    	pluginToNodeScores := make(map[string]framework.NodeScoreList, numPlugins)
    	for _, pl := range f.scorePlugins {
    		if state.SkipScorePlugins.Has(pl.Name()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    	postPolicyBucketTagging = "tagging"
    )
    
    // Check if there are buckets on server without corresponding entry in etcd backend and
    // make entries. Here is the general flow
    // - Range over all the available buckets
    // - Check if a bucket has an entry in etcd backend
    // -- If no, make an entry
    // -- If yes, check if the entry matches local IP check if we
    //
    //	need to update the entry then proceed to update
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    }
    
    func (w *timeIncrementingWorkers) PauseWorkers(uids ...types.UID) {
    	w.lock.Lock()
    	defer w.lock.Unlock()
    	if w.holds == nil {
    		w.holds = make(map[types.UID]chan struct{})
    	}
    	for _, uid := range uids {
    		if _, ok := w.holds[uid]; !ok {
    			w.holds[uid] = make(chan struct{})
    		}
    	}
    }
    
    func (w *timeIncrementingWorkers) ReleaseWorkers(uids ...types.UID) {
    	w.lock.Lock()
    	defer w.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2_gen.go

    			}
    		case "MetaSys":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "MetaSys")
    				return
    			}
    			if z.MetaSys == nil {
    				z.MetaSys = make(map[string][]byte, zb0002)
    			} else if len(z.MetaSys) > 0 {
    				for key := range z.MetaSys {
    					delete(z.MetaSys, key)
    				}
    			}
    			for zb0002 > 0 {
    				zb0002--
    				var za0002 string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      std::vector<Type> input_types = GetValueTypes(operands);
    
      // Determine the results types.
      // Return ALL outputs, respecting the provided order of the Operations. This
      // makes it straightforward for users of this function to map the return
      // values.
      llvm::SetVector<Operation*> ops;
      ops.insert(callers.forward);
      ops.insert(callers.core_tpu);
      std::vector<int> result_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. cmd/peer-rest-server.go

    	localDrives := cloneDrives(globalLocalDrives)
    	globalLocalDrivesMu.RUnlock()
    
    	errs := make([]error, len(localDrives))
    	infos := make([]DiskInfo, len(localDrives))
    	for i, drive := range localDrives {
    		infos[i], errs[i] = drive.DiskInfo(GlobalContext, DiskInfoOptions{})
    	}
    	infoMaps := make(map[string]madmin.DiskMetrics)
    	for i := range infos {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/crypto/des/des_test.go

    		c := newCipher(tt.key)
    		out := make([]byte, len(tt.in))
    		c.Encrypt(out, tt.in)
    
    		if !bytes.Equal(out, tt.out) {
    			t.Errorf("#%d: result: %x want: %x", i, out, tt.out)
    		}
    	}
    }
    
    func TestDESDecryptBlock(t *testing.T) {
    	for i, tt := range encryptDESTests {
    		c := newCipher(tt.key)
    		plain := make([]byte, len(tt.in))
    		c.Decrypt(plain, tt.out)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top