Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for mkcounter (0.13 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * elements.
       *
       * <p>If the mapped keys contain duplicates (according to the comparator), the values are merged
       * using the specified merging function. Entries will appear in the encounter order of the first
       * occurrence of the key.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Artifacts published to a Maven repository without a POM should be fixed.
    If you encounter such artifacts, please ask the plugin or library author to publish a new version with proper metadata.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    		} else if v.Op.IsCall() {
    			// if we hit a call, we've gone too far.
    			break
    		}
    	}
    
    	// Now make a pass through the ABI in-params, looking for params
    	// or pieces of params that we didn't encounter in the loop above.
    	for _, inp := range pri.InParams() {
    		if !isNamedRegParam(inp) {
    			continue
    		}
    		n := inp.Name
    
    		// Param is spread across one or more registers. Walk through
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    	internal, internalIP, external, pending, warnings, allUsable := r.Context.ResolveGatewayInstances(obj.Namespace, gatewayServices, servers)
    
    	// Setup initial conditions to the success state. If we encounter errors, we will update this.
    	// We have two status
    	// Accepted: is the configuration valid. We only have errors in listeners, and the status is not supposed to
    	// be tied to listeners, so this is always accepted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		return errors.New(errStr)
    	}
    
    	// If 'go list' did locate the package, ignore the error.
    	// It was probably related to loading source files, and we'll
    	// encounter it ourselves shortly if the FindOnly flag isn't set.
    	p.Dir = dir
    	p.ImportPath = f[1]
    	p.Root = f[2]
    	p.Goroot = f[3] == "true"
    	return nil
    }
    
    func equal(x, y []string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VOR	X1, X1, Y1
    
    	LXVD2X (R16)(CPOOL), P1
    	LXVD2X (R0)(CPOOL), P0
    
    	CALL p256MulInternal<>(SB)
    
    	MOVD	n+16(FP), N
    	ADD	$-1, N
    	CMP	$0, N
    	BEQ	done
    	MOVD	N, n+16(FP)	// Save counter to avoid clobber
    	VOR	T0, T0, X0
    	VOR	T1, T1, X1
    	BR	sqrLoop
    
    done:
    	MOVD $p256mul<>+0x00(SB), CPOOL
    
    	XXPERMDI T0, T0, $2, T0
    	XXPERMDI T1, T1, $2, T1
    	STXVD2X T0, (R0)(res_ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	podInfoMap map[string]*framework.QueuedPodInfo
    	keyFunc    func(*v1.Pod) string
    	// unschedulableRecorder/gatedRecorder updates the counter when elements of an unschedulablePodsMap
    	// get added or removed, and it does nothing if it's nil.
    	unschedulableRecorder, gatedRecorder metrics.MetricRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	watchFn   func(_ context.Context, _ string, _ storage.ListOptions) (watch.Interface, error)
    
    	// use getRequestWatchProgressCounter when reading
    	// the value of the counter
    	requestWatchProgressCounter int
    }
    
    func (d *dummyStorage) RequestWatchProgress(ctx context.Context) error {
    	d.Lock()
    	defer d.Unlock()
    	d.requestWatchProgressCounter++
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		if apierrors.IsConflict(err) {
    			// We don't use SSA by default for performance reasons
    			// (https://github.com/kubernetes/kubernetes/issues/113700#issuecomment-1698563918)
    			// because most of the time an Update doesn't encounter
    			// a conflict and is faster.
    			//
    			// We could return an error here and rely on
    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/runtime/map.go

    	buckets    unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
    	oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
    	nevacuate  uintptr        // progress counter for evacuation (buckets less than this have been evacuated)
    
    	extra *mapextra // optional fields
    }
    
    // mapextra holds fields that are not present on all maps.
    type mapextra struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top