Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,563 for current1_ (0.13 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractService.java

          throw new TimeoutException(
              "Timed out waiting for "
                  + this
                  + " to reach a terminal state. "
                  + "Current state: "
                  + state());
        }
      }
    
      /** Checks that the current state is equal to the expected state. */
      @GuardedBy("monitor")
      private void checkCurrentState(State expected) {
        State actual = state();
        if (actual != expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        /**
         * Retrieves the current convention.
         */
        public abstract S convention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention.
         */
        public abstract S setToConvention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt

      val okHttp_3_14 = historicOkHttp("3.14")
      val okHttp_3_13 = historicOkHttp("3.13")
      val okHttp_3_11 = historicOkHttp("3.11")
      val okHttp_3_9 = historicOkHttp("3.9")
    
      val currentVm = currentVm(ianaSuitesNew)
    
      val conscrypt =
        if (includeConscrypt) {
          Security.addProvider(Conscrypt.newProvider())
          conscrypt(ianaSuitesNew)
        } else {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

     *       Once configuration is available, it will be used, as per the above.
     *     </li>
     * </ul>
     *
     * <p>Currently, there is no simple, general way to know where in the above lifecycle a given piece of work will run.</p>
     */
    @ServiceScope(Scope.BuildTree.class)
    public class LifecycleAwareBuildCacheControllerFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. security/pkg/server/ca/node_auth.go

    		return fmt.Errorf("pod %v/%v not found", caller.PodNamespace, caller.PodName)
    	}
    	// Make sure UID is still valid for our current state
    	if callerPod.UID != types.UID(caller.PodUID) {
    		// This would only happen if a pod is re-created with the same name, and the CSR client is not in sync on which is current;
    		// this is fine and should be eventually consistent. Client is expected to retry in this case.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

         */
        private void takeOwnershipNow() {
            if (owner != null && owner != Thread.currentThread()) {
                throw new IllegalStateException(String.format("Cannot take ownership of %s as it is currently being used by another thread.", cacheDisplayName));
            }
            owner = Thread.currentThread();
            operations.pushCacheAction();
        }
    
        /**
         * Releases ownership of the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. src/internal/trace/reader_test.go

    			if err != nil {
    				t.Fatalf("failed to parse test file at %s: %v", testPath, err)
    			}
    			testReader(t, tr, exp)
    		})
    	}
    }
    
    func FuzzReader(f *testing.F) {
    	// Currently disabled because the parser doesn't do much validation and most
    	// getters can be made to panic. Turn this on once the parser is meant to
    	// reject invalid traces.
    	const testGetters = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/status/resourcelock.go

    	return lockResource{
    		GroupVersionResource: i.GroupVersionResource,
    		Namespace:            i.Namespace,
    		Name:                 i.Name,
    	}
    }
    
    type WorkQueue struct {
    	// tasks which are not currently executing but need to run
    	tasks []lockResource
    	// a lock to govern access to data in the cache
    	lock sync.Mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

            if (context != Context.CData) {
                throw new IllegalStateException("Cannot end CDATA node, as not currently in a CDATA node.");
            }
            writeRaw("]]>");
            context = Context.Text;
            return this;
        }
    
        /**
         * Writes an XML comment.
         * Characters are not XML encoded inside the comment.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    	switch listType {
    	case "map":
    		// Look up keys for this index in current object
    		currentElement := asList[index]
    
    		oldList := r.mapList
    		if oldList == nil {
    			oldList = MakeMapList(r.Schema, oldAsList)
    			r.mapList = oldList
    		}
    		return oldList.Get(currentElement)
    
    	case "set":
    		// Are sets correlatable? Only if the old value equals the current value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top