Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,250 for going (0.05 sec)

  1. android/guava/src/com/google/common/escape/Platform.java

      }
    
      /**
       * A thread-local destination buffer to keep us from creating new buffers. The starting size is
       * 1024 characters. If we grow past this we don't put it back in the threadlocal, we just keep
       * going and grow as needed.
       */
      private static final ThreadLocal<char[]> DEST_TL =
          new ThreadLocal<char[]>() {
            @Override
            protected char[] initialValue() {
              return new char[1024];
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityBuildLifecycleService.java

    /**
     * Features for Develocity used during settings configuration to register lifecycle callbacks.
     * <p>
     * This service is for lifecycle callbacks that don't have a stable API, yet,
     * to not break the Develocity plugin going forward.
     *
     * @since 8.8
     */
    @ServiceScope(Scope.Build.class)
    public interface DevelocityBuildLifecycleService {
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataVersionLister.java

    import org.gradle.api.Action;
    
    /**
     * Interface for custom version listers. A version lister is responsible for
     * returning the list of versions of a module which are available in a specific
     * repository. For this, Gradle is going to call the lister once for each module
     * it needs the list of versions. This will typically happen in case a dynamic
     * version is requested, in which case we need to know the list of versions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  4. test/fixedbugs/bug120.go

    	// that ends up computing 1e23-8388608 + 8388608 = 1e23,
    	// which rounds back to 1e23-8388608.
    	// The correct answer, of course, would be "1e23+8388608" = 1e23+8388608.
    	// This is not going to be correct until 6g has multiprecision floating point.
    	// A simpler case is "1e23+1", which should also round to 1e23+8388608.
    	Test{1e23 + 8.388608e6, "1e23+8.388608e6", "1.0000000000000001e+23"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/problems/src/integTest/groovy/org/gradle/api/problems/InjectedProblemsTransformerIntegrationTest.groovy

     */
    class InjectedProblemsTransformerIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            enableProblemsApiCheck()
        }
    
        def "plugin id is going to be implicitly added to the problem"() {
            given:
            settingsFile << """
                includeBuild("plugins")
            """
    
            file("plugins/src/main/java/PluginImpl.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/image/image.go

    	// All matched sub-groups, except the tag one, get thrown away. Hence, in a result of FindStringSubmatch, if a tag
    	// matches, it's going to be the second returned element (after the full match).
    	tagMatcher = regexp.MustCompile(`^(?U:.*)(?::([[:word:]][[:word:].-]*))?(?:@sha256:[a-fA-F\d]{64})?$`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 21:21:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/InvalidatableSet.java

      public int hashCode() {
        return delegate.hashCode();
      }
    
      private void validate() {
        // Don't use checkState(), because we don't want the overhead of generating the error message
        // unless it's actually going to be used; validate() is called for all set method calls, so it
        // needs to be fast.
        // (We could instead generate the message once, when the set is created, but zero is better.)
        if (!validator.get()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/regexp/backtrack.go

    		l := len(b.jobs) - 1
    		// Pop job off the stack.
    		pc := b.jobs[l].pc
    		pos := b.jobs[l].pos
    		arg := b.jobs[l].arg
    		b.jobs = b.jobs[:l]
    
    		// Optimization: rather than push and pop,
    		// code that is going to Push and continue
    		// the loop simply updates ip, p, and arg
    		// and jumps to CheckAndLoop. We have to
    		// do the ShouldVisit check that Push
    		// would have, but we avoid the stack
    		// manipulation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. docs/distributed/DECOMMISSION.md

    ERROR: This pool is not scheduled for decommissioning currently.
    ```
    
    ## Canceling a decommission
    
    Stop an on-going decommission in progress, mainly used in situations when the load may be too high and you may want to schedule the decommission at a later point in time.
    
    `mc admin decommission cancel` without an argument, lists out any on-going decommission in progress.
    
    ```
    λ mc admin decommission cancel alias/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionApplicator.java

     * A dependency substitution applicator is responsible for applying substitution rules to dependency metadata.
     * Substitution result may either be the same module (no substitution), a different module (target of the substitution
     * is going to be different) or a failure.
     */
    public interface DependencySubstitutionApplicator {
        SubstitutionResult NO_OP_SUBSTITUTION_RESULT = SubstitutionResult.of(NoOpSubstitution.INSTANCE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top