Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,011 for holder (0.22 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        return key;
      }
    
      T* GetOrCreateValue() const {
        ThreadLocalValueHolderBase* const holder =
            static_cast<ThreadLocalValueHolderBase*>(pthread_getspecific(key_));
        if (holder != NULL) {
          return CheckedDowncastToActualType<ValueHolder>(holder)->pointer();
        }
    
        ValueHolder* const new_holder = new ValueHolder(default_);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. 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)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Throwables$State$2 { void Throwables$State$2(String, int); public Throwables$State processLine(String); } org/junit/internal/management/ReflectiveRuntimeMXB$Holder.class package org.junit.internal.management; final synchronized class ReflectiveRuntimeMXB$Holder { private static final reflect.Method getInputArgumentsMet; private void ReflectiveRuntimeMXB$Holder(); static void <clinit>(); } org/junit/internal/management/ThreadMXBean.class package org.junit.internal.management; public abstract interface ThreadMXBean...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/css/javadoc.css

        border: 1px solid var(--table-border-color);
    }
    table.striped {
        border-collapse: collapse;
        border: 1px solid var(--table-border-color);
    }
    table.striped > thead {
        background-color: var(--subnav-background-color);
    }
    table.striped > thead > tr > th, table.striped > thead > tr > td {
        border: 1px solid var(--table-border-color);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K 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 (1)
Back to top