Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 681 for isInitialized (0.5 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/ProjectDependencyForcingResolver.java

            this.delegate = delegate;
        }
    
        @Override
        public void select(ConflictResolverDetails<T> details) {
            // the collection will only be initialized if more than one project candidate is found
            Collection<T> projectCandidates = null;
            T foundProjectCandidate = null;
            // fine one or more project dependencies among conflicting modules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

        secret:
          defaultMode: 420
          secretName: default-token-hu5jz
    status:
      conditions:
      - lastProbeTime: null
        lastTransitionTime: '2019-07-08T09:31:18Z'
        status: 'True'
        type: Initialized
      - lastProbeTime: null
        lastTransitionTime: '2019-07-08T09:41:59Z'
        status: 'True'
        type: Ready
      - lastProbeTime: null
        lastTransitionTime: null
        status: 'True'
        type: ContainersReady
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/SupportedOptionsCollectingProcessor.java

     * when combined with {@code -Werror}.
     *
     * <p>This processor needs to be added last to make sure that all other processors
     * have been {@linkplain Processor#init(ProcessingEnvironment) initialized} when
     * {@link #getSupportedOptions()} is called.
     */
    public class SupportedOptionsCollectingProcessor extends AbstractProcessor {
        private final List<Processor> processors = new ArrayList<Processor>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/admission/initializer_test.go

    	initializer.Initialize(wantsQuotaConfigurationAdmission)
    
    	if wantsQuotaConfigurationAdmission.config == nil {
    		t.Errorf("Expected quota configuration to be initialized but found nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/Striped64.java

     * so.
     */
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    		x += n
    	}
    	return b.clearExtra() | counterStateBits(x)<<stateExtraShift
    }
    
    // New returns a counter with the given name.
    // New can be called in global initializers and will be compiled down to
    // linker-initialized data. That is, calling New to initialize a global
    // has no cost at program startup.
    func New(name string) *Counter {
    	// Note: not calling defaultFile.New in order to keep this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/Striped64.java

     * so.
     */
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (2)
  8. android/guava/src/com/google/common/hash/Striped64.java

     * so.
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    @SuppressWarnings({"SunApi", "removal"}) // b/345822163
    abstract class Striped64 extends Number {
      /*
       * This class maintains a lazily-initialized table of atomically
       * updated variables, plus an extra "base" field. The table size
       * is a power of two. Indexing uses masked per-thread hash codes.
       * Nearly all declarations in this class are package-private,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/temp.go

    	n.SetNonMergeable(true)
    	return initStackTemp(init, n, nil)
    }
    
    // stackBufAddr returns the expression &tmp, where tmp is a newly
    // allocated temporary variable of type [len]elem. This variable is
    // initialized, and elem must not contain pointers.
    func stackBufAddr(len int64, elem *types.Type) *ir.AddrExpr {
    	if elem.HasPointers() {
    		base.FatalfAt(base.Pos, "%v has pointers", elem)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

        for (i in 0 until size) {
            val element = read()
            if (element === CircularReferenceMarker.INSTANCE) {
                // upon reading a circular reference, wait until all objects have been initialized
                // before inserting the elements in the resulting set.
                val remainingSize = size - i
                val remaining = ArrayList<Any?>(remainingSize).apply {
                    for (j in 0 until remainingSize) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top