Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for current1_ (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	parsedRV, _ := strconv.Atoi(outPod.ResourceVersion)
    	currentRV := fmt.Sprintf("%d", parsedRV+1)
    
    	firstNonConsistentReadRV := lastObjecRV
    	if consistentReadsSupported && !cacheEnabled {
    		firstNonConsistentReadRV = currentRV
    	}
    
    	secondNonConsistentReadRV := lastObjecRV
    	if consistentReadsSupported {
    		secondNonConsistentReadRV = currentRV
    	}
    
    	tcs := []struct {
    		name             string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. configure.py

      if curr_version.startswith('bazel '):
        curr_version = curr_version.split('bazel ')[1]
    
      curr_version_int = convert_version_to_int(curr_version)
    
      # Check if current bazel version can be detected properly.
      if not curr_version_int:
        print('WARNING: current bazel installation is not a release version.')
        return curr_version
    
      print('You have bazel %s installed.' % curr_version)
      return curr_version
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    	// - Unblock of the goroutine to switch to.
    	// - Block or destroy of the current goroutine.
    	// - Start executing the next goroutine.
    	//
    	// Because it acts like a GoStart for the next goroutine, we can
    	// only advance it if the sequence numbers line up.
    	//
    	// The current goroutine on the thread must be actively running.
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    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. pilot/pkg/networking/core/listener.go

    	// Extract the current filter chain matches, for every new filter chain match being added, check if there is a matching
    	// one in previous filter chains, if so, skip adding this filter chain with a warning.
    
    	merged := make([]*filterChainOpts, 0, len(current.chains)+len(incoming))
    	// Start with the current listener's filter chains.
    	merged = append(merged, current.chains...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // the active profile.
    type mProfCycleHolder struct {
    	value atomic.Uint32
    }
    
    // read returns the current cycle count.
    func (c *mProfCycleHolder) read() (cycle uint32) {
    	v := c.value.Load()
    	cycle = v >> 1
    	return cycle
    }
    
    // setFlushed sets the flushed flag. It returns the current cycle count and the
    // previous value of the flushed flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	}
    	if sc.gen == currGen {
    		// In the current generation, if either the current or last generation
    		// is dense, then skip scavenging. Inverting that, we should scavenge
    		// if both the current and last generation were not dense.
    		return sc.inUse < scavChunkHiOccPages && sc.lastInUse < scavChunkHiOccPages
    	}
    	// If we're one or more generations ahead, we know inUse represents the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    		if err := a.updateStatusIfNeeded(ctx, hpaStatusOriginal, hpa); err != nil {
    			utilruntime.HandleError(err)
    		}
    		return fmt.Errorf("failed to query scale subresource for %s: %v", reference, err)
    	}
    	setCondition(hpa, autoscalingv2.AbleToScale, v1.ConditionTrue, "SucceededGetScale", "the HPA controller was able to get the target's current scale")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	initSignal.Wait()
    }
    
    // RunOptionalTestProgressNotify tests ProgressNotify feature of ListOptions.
    // Given this feature is currently not explicitly used by higher layers of Kubernetes
    // (it rather is used by wrappers of storage.Interface to implement its functionalities)
    // this test is currently considered optional.
    func RunOptionalTestProgressNotify(ctx context.Context, t *testing.T, store storage.Interface) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. cmd/admin-handlers-users.go

    	// policy.UpdateServiceAccountAdminAction permission can update any service
    	// account.
    	//
    	// 2. We would like to let a user update their own access keys, however it
    	// is currently blocked pending a re-design. Users are still able to delete
    	// and re-create them.
    	if !globalIAMSys.IsAllowed(policy.Args{
    		AccountName:     cred.AccessKey,
    		Groups:          cred.Groups,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

          Iterator<T> iterator, Predicate<? super T> predicate) {
        checkNotNull(predicate, "predicate");
        for (int i = 0; iterator.hasNext(); i++) {
          T current = iterator.next();
          if (predicate.apply(current)) {
            return i;
          }
        }
        return -1;
      }
    
      /**
       * Returns a view containing the result of applying {@code function} to each element of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top