Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 241 for IMMEDIATE (0.13 sec)

  1. pkg/apis/resource/types.go

    	// as soon as the ResourceClaim gets created. This is done without
    	// considering the needs of Pods that will use the ResourceClaim
    	// because those Pods are not known yet.
    	AllocationModeImmediate AllocationMode = "Immediate"
    )
    
    // ResourceClaimStatus tracks whether the resource has been allocated and what
    // the resulting attributes are.
    type ResourceClaimStatus struct {
    	// DriverName is a copy of the driver name from the ResourceClass at
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. docs/metrics/v3.md

    | `minio_cluster_ilm_transition_missed_immediate_tasks` | `counter` | Number of missed immediate ILM transition tasks                            | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  3. misc/ios/go_ios_exec.go

    	if err != nil {
    		return "", err
    	}
    
    	finalPkgpath, underGoRoot, err := subdir()
    	if err != nil {
    		return "", err
    	}
    	cwd = strings.TrimSuffix(cwd, finalPkgpath)
    
    	// Copy all immediate files and testdata directories between
    	// the package being tested and the source root.
    	pkgpath = ""
    	for _, element := range strings.Split(finalPkgpath, string(filepath.Separator)) {
    		if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/list.md

    | `minio_node_ilm_transition_missed_immediate_tasks`           | Number of missed immediate ILM transition tasks.                                                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

      }
    
      /** Indicates whether this domain is composed of two or more parts. */
      public boolean hasParent() {
        return parts.size() > 1;
      }
    
      /**
       * Returns an {@code InternetDomainName} that is the immediate ancestor of this one; that is, the
       * current domain with the leftmost part removed. For example, the parent of {@code
       * www.google.com} is {@code google.com}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// as soon as the ResourceClaim gets created. This is done without
    	// considering the needs of Pods that will use the ResourceClaim
    	// because those Pods are not known yet.
    	AllocationModeImmediate AllocationMode = "Immediate"
    )
    
    // ResourceClaimStatus tracks whether the resource has been allocated and what
    // the resulting attributes are.
    type ResourceClaimStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm/asm.go

    	}
    
    	out.Write16(uint16(v))
    
    	return true
    }
    
    // sign extend a 24-bit integer.
    func signext24(x int64) int32 {
    	return (int32(x) << 8) >> 8
    }
    
    // encode an immediate in ARM's imm12 format. copied from ../../../internal/obj/arm/asm5.go
    func immrot(v uint32) uint32 {
    	for i := 0; i < 16; i++ {
    		if v&^0xff == 0 {
    			return uint32(i<<8) | v | 1<<25
    		}
    		v = v<<2 | v>>30
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	log := log.WithLabels("gateway", req)
    
    	gw := d.gateways.Get(req.Name, req.Namespace)
    	if gw == nil {
    		log.Debugf("gateway no longer exists")
    		// we'll ignore not-found errors, since they can't be fixed by an immediate
    		// requeue (we'll need to wait for a new notification), and we can get them
    		// on deleted requests.
    		return nil
    	}
    
    	var controller gateway.GatewayController
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. pkg/controller/daemon/update.go

    	// * Expect manage loop will handle failed pods
    	// * Deleted pods do not count as unavailable so that updates make progress when nodes are down
    	// Invariants:
    	// * A node with an unavailable old pod is a candidate for immediate new pod creation
    	// * An old available pod is deleted if a new pod is available
    	// * No more than maxSurge new pods are created for old available pods at any one time
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    			ft.restore()
    		}
    	}
    
    	ft.restore()
    
    	ft.cleanup(f)
    }
    
    // getBranch returns the range restrictions added by p
    // when reaching b. p is the immediate dominator of b.
    func getBranch(sdom SparseTree, p *Block, b *Block) branch {
    	if p == nil {
    		return unknown
    	}
    	switch p.Kind {
    	case BlockIf:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top