Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for continued (0.27 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    easy Reflexion, which they have at the point of Reflexion, shall still continue to return; and the Returns shall be at distances from the point of Reflexion in the arithmetical progression of the Numbers 2, 4, 6, 8, 10, 12, &c. and between these Fits the Rays shall be in Fits of easy Transmission._ For since the Fits of easy Reflexion and easy Transmission are of a returning nature, there is no reason why these Fits, which continued till the Ray arrived at the reflecting Medium, and there inclined the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    			}
    
    			// step forward in time past the grace period
    			fakeClock.Step(3 * time.Minute)
    			// no change in PID stats to simulate continued pressure
    			_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    			if err != nil {
    				t.Fatalf("Manager expects no error but got %v", err)
    			}
    
    			// verify PID pressure is still reported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    		if dID == globalDeploymentID() {
    			continue
    		}
    		if !uStatus.UserInfoMismatch {
    			continue
    		}
    
    		if isUserInfoEqual(latestUserStat.userInfo.UserInfo, uStatus.userInfo.UserInfo) {
    			continue
    		}
    
    		peerName := info.Sites[dID].Name
    
    		u, ok := globalIAMSys.GetUser(ctx, user)
    		if !ok {
    			continue
    		}
    		creds := u.Credentials
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            add_to_worklist(set_item.getOutputHandle());
            continue;
          }
          if (auto pop = llvm::dyn_cast<TensorListPopBackOp>(use.getOwner())) {
            add_to_worklist(pop.getOutputHandle());
            continue;
          }
          if (auto resize = llvm::dyn_cast<TensorListResizeOp>(use.getOwner())) {
            add_to_worklist(resize.getOutputHandle());
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		if stringsHasPrefixFold(k, ReservedMetadataPrefixLower) {
    			continue
    		}
    
    		if equals(k, xhttp.AmzBucketReplicationStatus) {
    			continue
    		}
    
    		// https://github.com/google/security-research/security/advisories/GHSA-76wf-9vgp-pj7w
    		if equals(k, xhttp.AmzMetaUnencryptedContentLength, xhttp.AmzMetaUnencryptedContentMD5) {
    			continue
    		}
    		meta[k] = v
    	}
    
    	if oi.ContentEncoding != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    		if pod.DeletionTimestamp == nil {
    			// skip pods which don't have a deletion timestamp
    			continue
    		}
    		if !podutil.IsPodPhaseTerminal(pod.Status.Phase) {
    			// skip the non-terminal pods
    			continue
    		}
    		if _, knownPod := workingPods[pod.UID]; knownPod {
    			// skip pods known to pod workers
    			continue
    		}
    		terminalPodsToDelete[pod.UID] = pod
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    		for _, i := range rule.Ingress {
    			if i == nil {
    				errs = AppendValidation(errs, fmt.Errorf("sidecar: ingress may not be null"))
    				continue
    			}
    			if i.Port == nil {
    				errs = AppendValidation(errs, fmt.Errorf("sidecar: port is required for ingress listeners"))
    				continue
    			}
    
    			// nolint: staticcheck
    			if i.Port.TargetPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	}
    	var gofiles []string
    	for _, name := range strings.Split(string(list), "\n") {
    		if name == "" { // end of list
    			continue
    		} else if !strings.HasSuffix(name, ".go") {
    			continue
    		}
    		if strings.HasPrefix(name, "./") {
    			gofiles = append(gofiles, name[len("./"):])
    			continue
    		}
    		file, err := b.findCachedObjdirFile(a, c, name)
    		if err != nil {
    			return fmt.Errorf("finding %s: %w", name, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top