Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Refresh (0.11 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

                    @TaskAction def action() {
                        println(message.get())
                    }
                }
                tasks.register("myTask", MyTask) {
                    // use an undeclared input so we can test --refresh-dependencies
                    // URL.text is not tracked for now; we'll have to change it once we start to track it
                    message.set(file("message").toPath().toUri().toURL().text)
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

            "should complain that there's no '-all' option"
    
            when:
            run 'tasks', '-refresh-dependencies'
    
            then:
            "should fail in a consistent way as with '--refresh-dependencies'"
        }
    
        def "cannot declare option for task dependency of another task"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. cmd/tier-handlers.go

    	switch cfg.Name {
    	case storageclass.STANDARD, storageclass.RRS:
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errTierReservedName), r.URL)
    		return
    	}
    
    	// Refresh from the disk in case we had missed notifications about edits from peers.
    	if err := globalTierConfigMgr.Reload(ctx, objAPI); err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/internal/trace/reader.go

    			e.base.time = r.lastTs + 1
    		}
    		r.lastTs = e.base.time
    	}()
    
    	// Consume any events in the ordering first.
    	if ev, ok := r.order.Next(); ok {
    		return ev, nil
    	}
    
    	// Check if we need to refresh the generation.
    	if len(r.frontier) == 0 && len(r.cpuSamples) == 0 {
    		if !r.emittedSync {
    			r.emittedSync = true
    			return syncEvent(r.gen.evTable, r.lastTs), nil
    		}
    		if r.spillErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/kubelet/util/manager/cache_based_manager.go

    	// needed and return data.
    	data.Lock()
    	defer data.Unlock()
    	if data.err != nil || !s.isObjectFresh(data) {
    		opts := metav1.GetOptions{}
    		if data.object != nil && data.err == nil {
    			// This is just a periodic refresh of an object we successfully fetched previously.
    			// In this case, server data from apiserver cache to reduce the load on both
    			// etcd and apiserver (the cache is eventually consistent).
    			util.FromApiserverCache(&opts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/sessionBuilderTestUtils.kt

            private val timeStamp = LocalDateTime.now().toEpochSecond(ZoneOffset.UTC)
    
            override fun getTimeStamp(): Long = timeStamp
    
            override fun refresh(asynchronous: Boolean, recursive: Boolean, postRunnable: Runnable?) {}
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. doc/README.md

    To preview `next` content in merged form using a local instance of the website, run:
    
    ```
    go run golang.org/x/website/cmd/golangorg@latest -goroot=..
    ```
    
    Then open http://localhost:6060/doc/next. Refresh the page to see your latest edits.
    
    ## For the release team
    
    The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
    in `doc/next`.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. pkg/kubelet/configmap/configmap_manager.go

    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    //     value in cache; otherwise it is just fetched from cache
    func NewCachingConfigMapManager(kubeClient clientset.Interface, getTTL manager.GetObjectTTLFunc) Manager {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/kubelet/secret/secret_manager.go

    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    //     value in cache; otherwise it is just fetched from cache
    func NewCachingSecretManager(kubeClient clientset.Interface, getTTL manager.GetObjectTTLFunc) Manager {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. pkg/ctrlz/ctrlz.go

    	_ = augmentLayout(baseLayout, "templates/modules/header.html")
    	_ = augmentLayout(baseLayout, "templates/modules/sidebar.html")
    	_ = augmentLayout(baseLayout, "templates/modules/last-refresh.html")
    	mainLayout := augmentLayout(template.Must(baseLayout.Clone()), "templates/layouts/main.html")
    
    	router := mux.NewRouter()
    	for _, t := range allTopics {
    		registerTopic(router, mainLayout, t)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top