Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 197 for Refresh (0.64 sec)

  1. 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)
  2. docs/metrics/prometheus/grafana/node/minio-node.json

              "interval": "",
              "legendFormat": "[{{drive}}]",
              "refId": "B"
            }
          ],
          "title": "IO Operations Waiting",
          "type": "timeseries"
        }
      ],
      "refresh": "",
      "schemaVersion": 39,
      "tags": [
        "minio"
      ],
      "templating": {
        "list": [
          {
            "current": {
            },
            "datasource": {
              "type": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                "org:testA:3" {
                    expectHeadMetadata()
                    expectHeadArtifact()
                }
            }
            listerInteractions.expectRefresh('testA')
            succeeds 'checkDeps', '--refresh-dependencies'
    
            then:
            outputContains("Listing versions for module testA")
    
            where:
            lister               | modules
            'simple'             | [testA: [1, 2, 3]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

    """
    
            when:
            repositoryInteractions {
                'org.test:projectA:1.0' {
                    expectResolve()
                }
            }
    
            then:
            succeeds 'resolve', '--refresh-dependencies'
    
            when:
            resetExpectations()
            repository {
                'org.test:projectA:1.0' {
                    withModule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

                "refresh": "time",
                "type": "query"
             },
             {
                "datasource": {
                   "type": "prometheus",
                   "uid": "${datasource}"
                },
                "name": "namespace",
                "query": "label_values(process_cpu_seconds_total{cluster=~\"$cluster\"}, namespace)",
                "refresh": "time",
                "type": "query"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			return
    		}
    	}
    }
    
    func (c *Counter) refresh() {
    	for {
    		state := c.state.load()
    		if state.havePtr() || state.readers() > 0 || state.extra() == 0 {
    			debugPrintf("refresh %s: havePtr=%v readers=%d extra=%d\n", c.name, state.havePtr(), state.readers(), state.extra())
    			return
    		}
    		if c.state.update(&state, state.setLocked()) {
    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. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

        public static class RefreshDependenciesOption extends EnabledOnlyBooleanBuildOption<StartParameterInternal> {
            public RefreshDependenciesOption() {
                super(null, CommandLineOptionConfiguration.create("refresh-dependencies", "U", "Refresh the state of dependencies."));
            }
    
            @Override
            public void applyTo(StartParameterInternal settings, Origin origin) {
                settings.setRefreshDependencies(true);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

            }
        }
    
        protected RefreshResponse refresh() {
            try {
                return getClient().get(c -> c.admin().indices().prepareRefresh(index).execute());
            } catch (final Exception e) {
                throw new EsAccessException("Failed to refresh.", e);
            }
        }
    
        protected IndexResponse insert(final Object target, final OpType opType) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/Suggester.java

    import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;
    import org.opensearch.action.admin.indices.get.GetIndexResponse;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.client.Client;
    import org.opensearch.cluster.metadata.AliasMetadata;
    import org.opensearch.common.xcontent.XContentType;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. pkg/volume/downwardapi/downwardapi.go

    }
    
    // SetUp puts in place the volume plugin.
    // This function is not idempotent by design. We want the data to be refreshed periodically.
    // The internal sync interval of kubelet will drive the refresh of data.
    // TODO: Add volume specific ticker and refresh loop
    func (b *downwardAPIVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top