Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for blocked (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	defer c.finishDispatching()
    	// Watchers stopped after startDispatching will be delayed to finishDispatching,
    
    	// Since add() can block, we explicitly add when cacher is unlocked.
    	// Dispatching event in nonblocking way first, which make faster watchers
    	// not be blocked by slower ones.
    	if event.Type == watch.Bookmark {
    		for _, watcher := range c.watchersBuffer {
    			watcher.nonblockingAdd(event)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	// Ensure there is some budget for slowing down processing.
    	// We use the fakeTimeBudget to prevent this test from flaking under
    	// the following conditions:
    	// 1) the watch w1 is blocked, so we were consuming the whole budget once
    	//    its buffer was filled in (10 items)
    	// 2) the budget is refreshed once per second, so it basically wasn't
    	//    happening in the test at all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    // activeQ is empty and waits until a new item is added to the queue. It
    // increments scheduling cycle when a pod is popped.
    func (p *PriorityQueue) Pop(logger klog.Logger) (*framework.QueuedPodInfo, error) {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    	for p.activeQ.Len() == 0 {
    		// When the queue is empty, invocation of Pop() is blocked until new item is enqueued.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    				},
    				Result: simulation.Result{
    					// This request should be blocked
    					ClusterMatched: "BlackHoleCluster",
    				},
    			},
    			{
    				Name: "direct request to inbound port",
    				Call: simulation.Call{
    					Port:     15006,
    					Protocol: simulation.TCP,
    				},
    				Result: simulation.Result{
    					// This request should be blocked
    					ClusterMatched: "BlackHoleCluster",
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	}
    
    	return dfi.ToObjectInfo(bucket, object, opts.Versioned || opts.VersionSuspended), nil
    }
    
    // Send the successful but partial upload/delete, however ignore
    // if the channel is blocked by other items.
    func (er erasureObjects) addPartial(bucket, object, versionID string) {
    	globalMRFState.addPartialOp(partialOperation{
    		bucket:    bucket,
    		object:    object,
    		versionID: versionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      buffer_type file
      buffer_path /var/log/fluentd-buffers/kubernetes.containers.buffer
      # Set queue_full action to block because we want to pause gracefully
      # in case of the off-the-limits load instead of throwing an exception
      buffer_queue_full_action block
      # Set the chunk limit conservatively to avoid exceeding the recommended
      # chunk size of 5MB per write request.
      buffer_chunk_limit 512k
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	OptDcl []*ir.Name
    
    	// Filled in by the user. Translates Block and Value ID to PC.
    	//
    	// NOTE: block is only used if value is BlockStart.ID or BlockEnd.ID.
    	// Otherwise, it is ignored.
    	GetPC func(block, value ID) int64
    }
    
    type BlockDebug struct {
    	// State at the start and end of the block. These are initialized,
    	// and updated from new information that flows on back edges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    			res[cred.ParentUser] = ParentUserInfo{
    				subClaimValue: subClaimValue,
    				roleArns:      set.CreateStringSet(roleArn),
    			}
    		}
    	}
    
    	return res
    }
    
    // Assumes store is locked by caller. If users is empty, returns all user mappings.
    func (store *IAMStoreSys) listUserPolicyMappings(cache *iamCache, users []string,
    	userPredicate func(string) bool,
    ) []madmin.UserPolicyEntities {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top