Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 241 for IMMEDIATE (0.25 sec)

  1. 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)
  2. src/cmd/internal/obj/s390x/objz.go

    				break
    			}
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = ctxt.Float64Sym(f64)
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    
    		// put constants not loadable by LOAD IMMEDIATE into memory
    	case AMOVD:
    		if p.From.Type == obj.TYPE_CONST {
    			val := p.From.Offset
    			if int64(int32(val)) != val &&
    				int64(uint32(val)) != val &&
    				int64(uint64(val)&(0xffffffff<<32)) != val {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. pkg/apis/storage/types.go

    type VolumeBindingMode string
    
    const (
    	// VolumeBindingImmediate indicates that PersistentVolumeClaims should be
    	// immediately provisioned and bound.
    	VolumeBindingImmediate VolumeBindingMode = "Immediate"
    
    	// VolumeBindingWaitForFirstConsumer indicates that PersistentVolumeClaims
    	// should not be provisioned and bound until the first Pod is created that
    	// references the PeristentVolumeClaim.  The volume provisioning and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. src/net/net.go

    			s += "->"
    		} else {
    			s += " "
    		}
    		s += e.Addr.String()
    	}
    	s += ": " + e.Err.Error()
    	return s
    }
    
    var (
    	// aLongTimeAgo is a non-zero time, far in the past, used for
    	// immediate cancellation of dials.
    	aLongTimeAgo = time.Unix(1, 0)
    
    	// noDeadline and noCancel are just zero values for
    	// readability with functions taking too many parameters.
    	noDeadline = time.Time{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle.go

    	select {
    	case <-t.ctx.Done():
    	case t.transitionCh <- task:
    	default:
    		switch src {
    		case lcEventSrc_s3PutObject, lcEventSrc_s3CopyObject, lcEventSrc_s3CompleteMultipartUpload:
    			// Update missed immediate tasks only for incoming requests.
    			t.missedImmediateTasks.Add(1)
    		}
    	}
    }
    
    var globalTransitionState *transitionState
    
    // newTransitionState returns a transitionState object ready to be initialized
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    		}
    
    		// must check literal pool here in case p generates many instructions
    		if c.blitrl != nil {
    			// Emit the constant pool just before p if p
    			// would push us over the immediate size limit.
    			if c.checkpool(op, pc+int32(m)) {
    				// Back up to the instruction just
    				// before the pool and continue with
    				// the first instruction of the pool.
    				p = op
    				continue
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    const (
    	// VolumeBindingImmediate indicates that PersistentVolumeClaims should be
    	// immediately provisioned and bound.  This is the default mode.
    	VolumeBindingImmediate VolumeBindingMode = "Immediate"
    
    	// VolumeBindingWaitForFirstConsumer indicates that PersistentVolumeClaims
    	// should not be provisioned and bound until the first Pod is created that
    	// references the PeristentVolumeClaim.  The volume provisioning and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    }
    
    /* MD-form 2-register, 2 6-bit immediate operands */
    func AOP_MD(op uint32, a uint32, s uint32, sh uint32, m uint32) uint32 {
    	return op | (s&31)<<21 | (a&31)<<16 | (sh&31)<<11 | ((sh&32)>>5)<<1 | (m&31)<<6 | ((m&32)>>5)<<5
    }
    
    /* MDS-form 3-register, 1 6-bit immediate operands. rsh argument is a register. */
    func AOP_MDS(op, to, from, rsh, m uint32) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. cmd/object-multipart-handlers.go

    			Status:    http.StatusText(http.StatusOK),
    		})
    	}
    
    	// Remove the transitioned object whose object version is being overwritten.
    	if !globalTierConfigMgr.Empty() {
    		// Schedule object for immediate transition if eligible.
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3CompleteMultipartUpload)
    		os.Sweep()
    	}
    }
    
    // AbortMultipartUploadHandler - Abort multipart upload
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/types.go

    const (
    	// VolumeBindingImmediate indicates that PersistentVolumeClaims should be
    	// immediately provisioned and bound.  This is the default mode.
    	VolumeBindingImmediate VolumeBindingMode = "Immediate"
    
    	// VolumeBindingWaitForFirstConsumer indicates that PersistentVolumeClaims
    	// should not be provisioned and bound until the first Pod is created that
    	// references the PeristentVolumeClaim.  The volume provisioning and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
Back to top