Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 579 for holder (0.13 sec)

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

    	for i := 0; i < s.tokenCount; i++ {
    		tok := fmt.Sprintf("%v-%v", jwtToken, i)
    		r := cacheRecord{
    			resp: &authenticator.Response{
    				User: &user.DefaultInfo{Name: fmt.Sprintf("holder of token %v", i)},
    			},
    		}
    		// make different combinations of audience, failures, denies for the tokens.
    		auds := []string{}
    		for i := 0; i < rr.Intn(4); i++ {
    			auds = append(auds, string(uuid.NewUUID()))
    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. LICENSE

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableMultimap.java

     *
     * <p><b>Key-grouped iteration.</b> All view collections follow the same iteration order. In all
     * current implementations, the iteration order always keeps multiple entries with the same key
     * together. Any creation method that would customarily respect insertion order (such as {@link
     * #copyOf(Multimap)}) instead preserves key-grouped order by inserting entries for an existing key
     * immediately after the last entry having that key.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/obj9.go

    	}
    
    	// q1: BLT	done
    	p = obj.Appendp(p, c.newprog)
    	q1 := p
    
    	p.As = ABLT
    	p.To.Type = obj.TYPE_BRANCH
    
    	p = obj.Appendp(p, c.newprog)
    	p.As = obj.ANOP // zero-width place holder
    
    	if q != nil {
    		q.To.SetTarget(p)
    	}
    
    	// Spill the register args that could be clobbered by the
    	// morestack code.
    
    	spill := c.cursym.Func().SpillRegisterArgs(p, c.newprog)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMultimap.java

     *
     * <p><b>Key-grouped iteration.</b> All view collections follow the same iteration order. In all
     * current implementations, the iteration order always keeps multiple entries with the same key
     * together. Any creation method that would customarily respect insertion order (such as {@link
     * #copyOf(Multimap)}) instead preserves key-grouped order by inserting entries for an existing key
     * immediately after the last entry having that key.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/obj.go

    	p.To.SetTarget(startPred.Link)
    	startPred.Link.Mark |= LABEL
    	p.Mark |= BRANCH
    
    	// placeholder for q1's jump target
    	p = obj.Appendp(p, c.newprog)
    
    	p.As = obj.ANOP // zero-width place holder
    	q1.To.SetTarget(p)
    
    	return p
    }
    
    func (c *ctxt0) addnop(p *obj.Prog) {
    	q := c.newprog()
    	q.As = ANOOP
    	q.Pos = p.Pos
    	q.Link = p.Link
    	p.Link = q
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Longs.java

      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * @since 23.1
       */
      public static void sortDescending(long[] array) {
        checkNotNull(array);
        sortDescending(array, 0, array.length);
      }
    
      /**
       * Sorts the elements of {@code array} between {@code fromIndex} inclusive and {@code toIndex}
       * exclusive in descending order.
       *
       * @since 23.1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Longs.java

      /**
       * Sorts the elements of {@code array} in descending order.
       *
       * @since 23.1
       */
      public static void sortDescending(long[] array) {
        checkNotNull(array);
        sortDescending(array, 0, array.length);
      }
    
      /**
       * Sorts the elements of {@code array} between {@code fromIndex} inclusive and {@code toIndex}
       * exclusive in descending order.
       *
       * @since 23.1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    }
    
    // SetVersionPriority allows specifying a precise order of priority. All specified versions must be in the same group,
    // and the specified order overwrites any previously specified order for this group
    func (s *Scheme) SetVersionPriority(versions ...schema.GroupVersion) error {
    	groups := sets.String{}
    	order := []string{}
    	for _, version := range versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    	NetworkManager *NetworkManager
    
    	// mutex used for protecting Environment.pushContext
    	mutex sync.RWMutex
    	// pushContext holds information during push generation. It is reset on config change, at the beginning
    	// of the pushAll. It will hold all errors and stats and possibly caches needed during the entire cache computation.
    	// DO NOT USE EXCEPT FOR TESTS AND HANDLING OF NEW CONNECTIONS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top