Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,637 for cheese (0.37 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    func TestSharedLookup(t *testing.T) {
    	var chewie = &authenticator.Response{User: &user.DefaultInfo{Name: "chewbacca"}}
    
    	t.Run("actually shared", func(t *testing.T) {
    		var lookups uint32
    		c := make(chan struct{})
    		a := New(authenticator.TokenFunc(func(ctx context.Context, token string) (*authenticator.Response, bool, error) {
    			<-c
    			atomic.AddUint32(&lookups, 1)
    			return chewie, true, nil
    		}), true, time.Minute, 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/allocator/bitmap.go

    // by counting the set bits in r.allocated.
    //
    // TODO: use RLE and compact the allocator to minimize space.
    type AllocationBitmap struct {
    	// strategy carries the details of how to choose the next available item out of the range
    	strategy bitAllocator
    	// max is the maximum size of the usable items in the range
    	max int
    	// rangeSpec is the range specifier, matching RangeAllocation.Range
    	rangeSpec string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/numa_info.go

    	if m1.IsNarrowerThan(m2) {
    		return m1
    	}
    	return m2
    }
    
    func (n *NUMAInfo) Closest(m1 bitmask.BitMask, m2 bitmask.BitMask) bitmask.BitMask {
    	// If the length of both bitmasks aren't the same, choose the one that is narrowest.
    	if m1.Count() != m2.Count() {
    		return n.Narrowest(m1, m2)
    	}
    
    	m1Distance := n.NUMADistances.CalculateAverageFor(m1)
    	m2Distance := n.NUMADistances.CalculateAverageFor(m2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. docs/pl/docs/tutorial/index.md

        ```
    
        Zainstaluj też `uvicorn`, który będzie służył jako serwer:
    
        ```
        pip install "uvicorn[standard]"
        ```
    
        Tak samo możesz zainstalować wszystkie dodatkowe biblioteki, których chcesz użyć.
    
    ## Zaawansowany poradnik
    
    Jest też **Zaawansowany poradnik**, który możesz przeczytać po lekturze tego **Samouczka**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/admission_test.go

    	}{
    		{
    			name:             "matches",
    			all:              []string{"one", "two"},
    			enabled:          []string{"one", "two"},
    			expectedDisabled: []string{},
    		},
    		{
    			name:             "choose one",
    			all:              []string{"one", "two"},
    			enabled:          []string{"one"},
    			expectedDisabled: []string{"two"},
    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 01:51:35 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/BigDecimalMath.java

      /**
       * Returns {@code x}, rounded to a {@code double} with the specified rounding mode. If {@code x}
       * is precisely representable as a {@code double}, its {@code double} value will be returned;
       * otherwise, the rounding will choose between the two nearest representable values with {@code
       * mode}.
       *
       * <p>For the case of {@link RoundingMode#HALF_DOWN}, {@code HALF_UP}, and {@code HALF_EVEN},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    d) Each Contributor represents that to its knowledge it has sufficient copyright
    rights in its Contribution, if any, to grant the copyright license set forth
    in this Agreement.
    
       3. REQUIREMENTS
    
    A Contributor may choose to distribute the Program in object code form under
    its own license agreement, provided that:
    
          a) it complies with the terms and conditions of this Agreement; and
    
          b) its license agreement:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  8. architecture/ambient/ztunnel.md

    For this purpose, we chose to use xDS transport protocol due to our expertise and existing infrastructure, and because the protocol is well suited to our needs.
    
    However, while we chose to use the xDS *transport protocol*, we chose to not use the xDS resource types, such as Clusters and Listeners.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

         * If a single version can satisfy all of the selectors, the result will reflect this.
         * If not, a minimal set of versions will be provided in the result, and conflict resolution will be required to choose.
         */
        private List<T> buildResolveResults(ModuleSelectors<? extends ResolvableSelectorState> selectors, VersionSelector allRejects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

         * method to tell that a candidate is the best one.</p>
         *
         * <p>It is not mandatory for a rule to choose, and it is not an error to select multiple candidates.</p>
         *
         * @param rule the rule to add
         * @since 4.0
         */
        void add(Class<? extends AttributeDisambiguationRule<T>> rule);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
Back to top