Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for touched (0.26 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/kube/kclient/interfaces.go

    	HasSynced() bool
    	// ShutdownHandlers terminates all handlers added by AddEventHandler.
    	// Warning: this only applies to handlers called via AddEventHandler; any handlers directly added
    	// to the underlying informer are not touched
    	ShutdownHandlers()
    	// Start starts just this informer. Typically, this is not used. Instead, the `kube.Client.Run()` is
    	// used to start all informers at once.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. hack/make-rules/verify.sh

        "verify-golangci-lint.sh"              # runs in separate pull-kubernetes-verify-lint
        )
    fi
    
    # Exclude readonly package check in certain cases, aka, in periodic jobs we don't care and a readonly package won't be touched
    if [[ ${EXCLUDE_READONLY_PACKAGE:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-readonly-packages.sh"  # skip in CI, if env is set
        )
    fi
    
    # Only run known fast checks in quick mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. cmd/preferredimports/preferredimports.go

    	confirm       = flag.Bool("confirm", false, "update file with the preferred aliases for imports")
    	regex         = flag.String("include-path", "(test/e2e/|test/e2e_node)", "only files with paths matching this regex is touched")
    	isTerminal    = term.IsTerminal(int(os.Stdout.Fd()))
    	logPrefix     = ""
    	aliases       = map[*regexp.Regexp]string{}
    )
    
    type analyzer struct {
    	fset      *token.FileSet // positions are relative to fset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/uninstall_test.go

    // If purge is set to true, we expect all resources are removed.
    // Otherwise we expect only selected resources from control plane are removed, resources from base and the legacy addon installation would not be touched.
    func checkCPResourcesUninstalled(t test.Failer, cs cluster.Cluster, gvkResources []schema.GroupVersionKind, label string, purge bool) {
    	retry.UntilSuccessOrFail(t, func() error {
    		var reStrlist []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/net/http/cgi/host.go

    	}
    
    	if statusCode == 0 {
    		statusCode = http.StatusOK
    	}
    
    	// Copy headers to rw's headers, after we've decided not to
    	// go into handleInternalRedirect, which won't want its rw
    	// headers to have been touched.
    	for k, vv := range headers {
    		for _, v := range vv {
    			rw.Header().Add(k, v)
    		}
    	}
    
    	rw.WriteHeader(statusCode)
    
    	_, err = io.Copy(rw, linebody)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. internal/s3select/csv/reader.go

    	input        chan *queueItem  // input for workers
    	queue        chan *queueItem  // output from workers in order
    	err          error            // global error state, only touched by Reader.Read
    	bufferPool   sync.Pool        // pool of []byte objects for input
    	csvDstPool   sync.Pool        // pool of [][]string used for output
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. 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)
  9. 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{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. 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)
Back to top