Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for happen (0.23 sec)

  1. pkg/controller/podgc/gc_controller_test.go

    func setupNewSimpleClient(nodes []*v1.Node, pods []*v1.Pod) *fake.Clientset {
    	podList := &v1.PodList{}
    	for _, podItem := range pods {
    		podList.Items = append(podList.Items, *podItem)
    	}
    	nodeList := &v1.NodeList{}
    	for _, nodeItem := range nodes {
    		nodeList.Items = append(nodeList.Items, *nodeItem)
    	}
    	return fake.NewSimpleClientset(nodeList, podList)
    }
    
    func getDeletedPodNames(client *fake.Clientset) sets.Set[string] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

      EXPECT_EQ(status, kTfLiteError);
    }
    
    TEST_F(QuantizeWeightsTest, WeightsMinNumElements) {
      LoadBasicModel();
      // Make weights_min_size sufficiently large such that no quantization should
      // happen, i.e. the original model is the same size as the old one.
      flatbuffers::FlatBufferBuilder builder;
      const uint64_t kWeightsMinNumElements = 1000000;
      EXPECT_EQ(QuantizeWeights(&builder, model_, kWeightsMinNumElements),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_inbound.go

    		if cc.bindToPort {
    			// If this config is for bindToPort, we want to actually create a real Listener.
    			listeners = append(listeners, lb.inboundCustomListener(cc, chains))
    		} else {
    			// Otherwise, just append the filter chain to the virtual inbound chains.
    			virtualInboundFilterChains = append(virtualInboundFilterChains, chains...)
    		}
    	}
    
    	if lb.node.GetInterceptionMode() != model.InterceptionNone {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    		if !loc.absent() {
    			strs = append(strs, fmt.Sprintf("\t%v = %v\n", s.slots[slotID], s.LocString(loc)))
    		}
    	}
    
    	strs = append(strs, "\n")
    	for reg, slots := range state.registers {
    		if len(slots) != 0 {
    			var slotStrs []string
    			for _, slot := range slots {
    				slotStrs = append(slotStrs, s.slots[slot].String())
    			}
    			strs = append(strs, fmt.Sprintf("\t%v = %v\n", &s.registers[reg], slotStrs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		oldest = w.listResourceVersion + 1
    	case size > 0:
    		// If the previous condition is not satisfied: either some event was already
    		// removed from the buffer or we've never completed a list (the latter can
    		// only happen in unit tests that populate the buffer without performing
    		// list/replace operations), the oldest watch event we can deliver is the first
    		// one in the buffer.
    		oldest = w.cache[w.startIndex%w.capacity].ResourceVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    				if s.canSSA(n.X) {
    					if base.Debug.Append > 0 { // replicating old diagnostic message
    						base.WarnfAt(n.Pos(), "append: len-only update (in local slice)")
    					}
    					break
    				}
    				if base.Debug.Append > 0 {
    					base.WarnfAt(n.Pos(), "append: len-only update")
    				}
    				s.append(rhs, true)
    				return
    			}
    		}
    
    		if ir.IsBlank(n.X) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    	}
    
    	// Lock to avoid multiple resizes to happen at the same time.
    	es.mu.Lock()
    	defer es.mu.Unlock()
    	var workers []chan expiryOp
    	if v := es.workers.Load(); v != nil {
    		// Copy to new array.
    		workers = append(workers, *v...)
    	}
    
    	if n == len(workers) || n < 1 {
    		return
    	}
    
    	for len(workers) < n {
    		input := make(chan expiryOp, 10000)
    		workers = append(workers, input)
    		go es.Worker(input)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    							Count:   5,
    							Timeout: time.Second,
    							Check:   check.OK(),
    							To:      localDst,
    						}
    						// allow for delay between prometheus pulls from target pod
    						// pulls should happen every 15s, so timeout if not found within 30s
    
    						query := buildQuery(localSrc, localDst)
    						stc.Logf("prometheus query: %#v", query)
    						err := retry.Until(func() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    // to relocsym happen in parallel; the assumption is that each
    // parallel thread will have its own state object.
    type relocSymState struct {
    	target *Target
    	ldr    *loader.Loader
    	err    *ErrorReporter
    	syms   *ArchSyms
    }
    
    // makeRelocSymState creates a relocSymState container object to
    // pass to relocsym(). If relocsym() calls happen in parallel,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. cmd/encryption-v1.go

    			if kind, ok := crypto.IsEncrypted(object.UserDefined); ok && kind == crypto.S3 && !crypto.IsMultiPart(object.UserDefined) {
    				SSES3SinglePartObjects[i] = true
    
    				metadata = append(metadata, object.UserDefined)
    				buckets = append(buckets, object.Bucket)
    				names = append(names, object.Name)
    			}
    		}
    
    		// If there are no SSE-S3 single-part objects
    		// we can skip the decryption process. However,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top