Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for isActive (0.25 sec)

  1. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          this.loading = loading;
        }
    
        @Override
        public boolean isLoading() {
          return loading;
        }
    
        @Override
        public boolean isActive() {
          return !loading;
        }
    
        @Override
        public V waitForValue() {
          return get();
        }
    
        @Override
        public void notifyNewValue(V newValue) {}
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-interpolation-reporting/pom.xml

                    </configuration>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
                <artifactId>only-inactive-profile</artifactId>
                <reportSets>
                  <reportSet>
                    <id>Inactive only ||${project.basedir}||</id>
                    <configuration>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

            getActiveProfiles().forEach(this.activations::remove);
            activeProfileIds.forEach(this::activateOptionalProfile);
        }
    
        /**
         * Overwrites the inactive profiles based on a pre-Maven 4 "inactive profiles" list.
         * @param inactiveProfileIds A {@link List} of profile IDs that must be deactivated.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

                    </configuration>
                  </execution>
                </executions>
              </plugin>
              <plugin>
                <artifactId>only-inactive-profile</artifactId>
                <executions>
                  <execution>
                    <id>Inactive only ||${project.basedir}||</id>
                    <configuration>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

        }
    
        /**
         * @return Required inactive project selectors, never {@code null}.
         */
        public Set<String> getRequiredInactiveProjectSelectors() {
            return getProjectSelectors(pa -> !pa.optional && !pa.active);
        }
    
        /**
         * @return Optional inactive project selectors, never {@code null}.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  6. .github/workflows/issue-manager.yml

                  },
                  "changes-requested": {
                    "delay": 2628000,
                    "message": "As this PR had requested changes to be applied but has been inactive for a while, it's now going to be closed. But if there's anyone interested, feel free to create a new PR."
                  }
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Jan 30 18:46:56 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. .github/workflows/stale-issues.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ============================================================================
    
    name: Close inactive issues
    on:
      schedule:
        - cron: "30 1 * * *"
    
    permissions:
      contents: read
    
    jobs:
      close-issues:
        # Don't do this in forks
        if: github.repository == 'tensorflow/tensorflow'
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Nov 23 20:04:38 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/JobHelper.java

                throw new ScheduledJobException("No job.");
            }
    
            final String id = scheduledJob.getId();
            if (!Constants.T.equals(scheduledJob.getAvailable())) {
                logger.info("Inactive Job {}:{}", id, scheduledJob.getName());
                try {
                    unregister(scheduledJob);
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  9. .github/workflows/lock.yml

    concurrency:
      group: lock
    
    jobs:
      action:
        runs-on: ubuntu-latest
        steps:
          - uses: dessant/lock-threads@v3
            with:
              github-token: ${{ github.token }}
              issue-inactive-days: '365'
              exclude-any-issue-labels: 'do-not-close'
              issue-lock-reason: 'resolved'
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Jan 30 03:27:43 GMT 2022
    - 447 bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ListenableFuture.java

      }
    }
    
    /**
     * Subset of the elemental2 IThenable interface without the single-parameter overload, which allows
     * us to implement it using a default implementation in J2cl ListenableFuture.
     */
    @JsType(isNative = true, namespace = JsPackage.GLOBAL, name = "IThenable")
    interface IThenable<T extends @Nullable Object> {
      <V extends @Nullable Object> IThenable<V> then(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Oct 24 18:27:19 GMT 2023
    - 3.9K bytes
    - Viewed (1)
Back to top