Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for touchMem (0.21 sec)

  1. pkg/wasm/cache.go

    	defer c.mux.Unlock()
    	needChecksumUpdate := c.updateChecksum(key)
    
    	// Check if the module has already been added. If so, avoid writing the file again.
    	if ce, ok := c.modules[key.moduleKey]; ok {
    		// Update last touched time.
    		ce.last = time.Now()
    		if needChecksumUpdate {
    			ce.referencingURLs.Insert(key.downloadURL)
    		}
    		return ce, nil
    	}
    
    	modulePath, err := getModulePath(c.dir, key.moduleKey)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent_test.go

    		})
    		sds := a.Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    
    		// Ensure we output the certs
    		checkCertsWritten(t, dir)
    
    		// The provisioning certificates should not be touched
    		go sds[security.WorkloadKeyCertResourceName].DrainResponses()
    		expectFileChanged(t, filepath.Join(dir, "cert-chain.pem"), filepath.Join(dir, "key.pem"))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. pkg/kubelet/config/config_test.go

    		CreatePodUpdate(kubetypes.UPDATE, TestSource, pod))
    }
    
    func TestNewPodAddedSetReconciled(t *testing.T) {
    	tCtx := ktesting.Init(t)
    
    	// Create and touch new test pods, return the new pods and touched pod. We should create new pod list
    	// before touching to avoid data race.
    	newTestPods := func(touchStatus, touchSpec bool) ([]*v1.Pod, *v1.Pod) {
    		pods := []*v1.Pod{
    			CreateValidPod("changeable-pod-0", "new"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            when:
            file("ci").text = "true"
            configurationCacheRun "run"
    
            then:
            output.count("ON CI") == 1
            configurationCache.assertStateStored()
    
            when: "file is touched but unchanged"
            file("ci").text = "true"
            configurationCacheRun "run"
    
            then: "cache is still valid"
            output.count("ON CI") == 1
            configurationCache.assertStateLoaded()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils.go

    	if hasStaleOwnerRef(claim, set, controllerKind) || hasStaleOwnerRef(claim, pod, podKind) {
    		// The claim is being managed by previous, presumably deleted, version of the controller. It should not be touched.
    		return true
    	}
    
    	if hasUnexpectedController(claim, set, pod) {
    		if hasOwnerRef(claim, set) || hasOwnerRef(claim, pod) {
    			return false // Need to clean up the conflicting controllers
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		fmt.Printf("[upgrade/etcd] Failed to upgrade etcd: %v\n", err)
    		// Since upgrade component failed, the old etcd manifest has either been restored or was never touched
    		// Now we need to check the health of etcd cluster if it is up with old manifest
    		fmt.Println("[upgrade/etcd] Waiting for previous etcd to become available")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top