Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 467 for Refresh (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenModuleArtifactResolutionIntegrationTest.groovy

            module.pom.expectGet()
    
            then:
            executer.withArgument(execArg)
            succeeds("verify")
    
            where:
            condition                     | execArg
            "with --refresh-dependencies" | "--refresh-dependencies"
            "when maven pom changes"      | "-Pnocache"
        }
    
        private MavenHttpModule publishModule() {
            def module = createModule()
            module.publish()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/FessUser.java

        String[] getRoleNames();
    
        String[] getGroupNames();
    
        String[] getPermissions();
    
        default boolean isEditable() {
            return false;
        }
    
        default boolean refresh() {
            return false;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 978 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            cost == remoteAnswer
    
            where:
            remoteAnswer << MetadataFetchingCost.values()
        }
    
        def "estimates cost for missing metadata is correct (remote says #remoteAnswer, must refresh = #mustRefreshMissingModule)"() {
            def module = Mock(ModuleComponentIdentifier)
            def localAccess = repo.localAccess
            realRemoteAccess.estimateMetadataFetchingCost(module) >> remoteAnswer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

            module.ivy.expectGet()
    
            then:
            executer.withArgument(execArg)
            succeeds("verify")
    
            where:
            condition                     | execArg
            "with --refresh-dependencies" | "--refresh-dependencies"
            "when ivy descriptor changes" | "-Pnocache"
        }
    
        private IvyHttpModule publishModule() {
            def module = createModule()
            module.publish()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. internal/dsync/dsync-client_test.go

    	return restClient.Call("/v1/unlock", args)
    }
    
    func (restClient *ReconnectRESTClient) Refresh(ctx context.Context, args LockArgs) (refreshed bool, err error) {
    	return restClient.Call("/v1/refresh", args)
    }
    
    func (restClient *ReconnectRESTClient) ForceUnlock(ctx context.Context, args LockArgs) (reply bool, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:36:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRemoteDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                }
            }
    
            when:
            server.resetExpectations()
            m.pom.expectHead()
            m.moduleMetadata.expectHead()
            m.artifact.expectHead()
    
            executer.withArgument("--refresh-dependencies")
            run("checkDeps")
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("test:a:1.2")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/NonUniqueSnapshotVersionsReadOnlyCacheDependencyResolutionTest.groovy

            latest.moduleMetadata.expectGet()
            latest.artifact.expectHead()
            latest.artifact.sha1.expectGet()
            latest.artifact.expectGet()
    
            succeeds ':checkDeps', '--refresh-dependencies'
    
            then:
            resolve.expectGraph {
                root(':', 'org.gradle:ro-test:20') {
                    module('org.module:core:1.0-SNAPSHOT')
                }
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedMissingModulesIntegrationTest.groovy

            moduleInRepo2.ivy.expectHead()
            moduleInRepo2.jar.expectHead()
    
            then:
            succeeds('showMissing')
        }
    
        def "checks for missing modules in each repository when run with --refresh-dependencies"() {
            given:
            def repo1 = ivyHttpRepo("repo1")
            def repo2 = ivyHttpRepo("repo2")
            def moduleInRepo1 = repo1.module("group", "projectA", "1.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LoadingCache.java

       * <p>Returns without doing anything if another thread is currently loading the value for {@code
       * key}. If the cache loader associated with this cache performs refresh asynchronously then this
       * method may return before refresh completes.
       *
       * @since 11.0
       */
      void refresh(K key);
    
      /**
       * {@inheritDoc}
       *
       * <p><b>Note that although the view <i>is</i> modifiable, no method on the returned map will ever
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    .Refreshing a Gradle project in IntelliJ IDEA
    image::troubleshooting-refresh-intellij.png[]
    
    === Refreshing Eclipse (using Buildship)
    
    If you're using link:https://projects.eclipse.org/projects/tools.buildship[Buildship] for the Eclipse IDE, you can re-synchronize your Gradle build by opening the "Gradle Tasks" view and clicking the "Refresh" icon, or by executing the `Gradle` > `Refresh Gradle Project` command from the context menu while editing a Gradle script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top