Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 166 for IMMEDIATE (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    	qs.lockAndSyncTime(ctx)
    	defer qs.lock.Unlock()
    
    	if qCfg.DesiredNumQueues > 0 {
    		// Adding queues is the only thing that requires immediate action
    		// Removing queues is handled by attrition, removing a queue when
    		// it goes empty and there are too many.
    		numQueues := len(qs.queues)
    		if qCfg.DesiredNumQueues > numQueues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. cmd/format-erasure.go

    	}
    
    	tmpFormat := mustGetUUID()
    
    	// Purge any existing temporary file, okay to ignore errors here.
    	defer disk.Delete(context.TODO(), minioMetaBucket, tmpFormat, DeleteOptions{
    		Recursive: false,
    		Immediate: false,
    	})
    
    	// write to unique file.
    	if err = disk.WriteAll(context.TODO(), minioMetaBucket, tmpFormat, formatData); err != nil {
    		return err
    	}
    
    	// Rename file `uuid.json` --> `format.json`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	AddrOffset             // [R, X] - use address R + X
    	AddrPostReg            // [Rn], Rm - - use address Rn, set Rn = Rn + Rm
    )
    
    // A MemImmediate is a memory reference made up of a base R and immediate X.
    // The effective memory address is R or R+X depending on AddrMode.
    type MemImmediate struct {
    	Base RegSP
    	Mode AddrMode
    	imm  int32
    }
    
    func (MemImmediate) isArg() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm64/asm.go

    					o0 = uint32(val >> 32)
    					o1 = uint32(val)
    				} else {
    					o0 = uint32(val)
    					o1 = uint32(val >> 32)
    				}
    
    				// The first instruction (ADRP) has a 21-bit immediate field,
    				// and the second (ADD or LD/ST) has a 12-bit immediate field.
    				// The first instruction is only for high bits, but to get the carry bits right we have
    				// to put the full addend, including the bottom 12 bits again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server.go

    nSyncPeriod.Duration, "iptables-min-sync-period", o.config.IPTables.MinSyncPeriod.Duration, "The minimum period between iptables rule resyncs (e.g. '5s', '1m', '2h22m'). A value of 0 means every Service or EndpointSlice change will result in an immediate iptables resync.")
    
    	fs.DurationVar(&o.config.IPVS.SyncPeriod.Duration, "ipvs-sync-period", o.config.IPVS.SyncPeriod.Duration, "An interval (e.g. '5s', '1m', '2h22m') indicating how frequently various re-synchronizing and cleanup operations...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top