Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for accommodated (0.28 sec)

  1. internal/bucket/bandwidth/reader.go

    	if hdr > 0 { // available tokens go towards header first
    		if hdr < b { // all of header can be accommodated
    			r.opts.HeaderSize = 0
    			need = int(math.Min(float64(b-hdr), float64(need))) // use remaining tokens towards payload
    			tokens = need + hdr
    
    		} else { // part of header can be accommodated
    			r.opts.HeaderSize -= b - 1
    			need = 1 // to ensure we read at least one byte for every Read
    			tokens = b
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. internal/logger/reqinfo.go

    	Cred         auth.Credentials `json:"-"`
    	Region       string           `json:"-"`
    	Owner        bool             `json:"-"`
    	AuthType     string           `json:"-"`
    	tags         []KeyVal         // Any additional info not accommodated by above fields
    	sync.RWMutex
    }
    
    // NewReqInfo :
    func NewReqInfo(remoteHost, userAgent, deploymentID, requestID, api, bucket, object string) *ReqInfo {
    	return &ReqInfo{
    		RemoteHost:   remoteHost,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		}
    	}
    
    	if ok, failReason, failMessage := kl.canAdmitPod(otherActivePods, podCopy); !ok {
    		// Log reason and return. Let the next sync iteration retry the resize
    		klog.V(3).InfoS("Resize cannot be accommodated", "pod", podCopy.Name, "reason", failReason, "message", failMessage)
    		return false, podCopy, v1.PodResizeStatusDeferred
    	}
    
    	for _, container := range podCopy.Spec.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/escape/Platform.java

    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    final class Platform {
      private Platform() {}
    
      /** Returns a thread-local 1024-char array. */
      static char[] charBufferFromThreadLocal() {
        // requireNonNull accommodates Android's @RecentlyNullable annotation on ThreadLocal.get
        return requireNonNull(DEST_TL.get());
      }
    
      /**
       * A thread-local destination buffer to keep us from creating new buffers. The starting size is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/commandline/CommandLineTaskConfigurerSpec.groovy

        }
    
        def "configures options on all types that can accommodate the setting"() {
            when:
            configurer.configureTasks([task, otherTask], ['--someFlag'])
            then:
            task.someFlag
            otherTask.someFlag
        }
    
        def "fails if some of the types cannot accommodate the setting"() {
            when:
            configurer.configureTasks([task, defaultTask], ['--someFlag'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 09 09:06:36 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  6. cluster/gce/manifests/glbc.manifest

        - mountPath: /var/log/glbc.log
          name: logfile
          readOnly: false
        - mountPath: /etc/srv/kubernetes/l7-lb-controller
          name: srvkube
          readOnly: true
        resources:
          # Request is set to accommodate this pod alongside the other
          # master components on a single core master.
          requests:
            cpu: 10m
            memory: 50Mi
        args:
        - --v=3
        - --logtostderr=false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 10:40:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/escape/Platform.java

    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    final class Platform {
      private Platform() {}
    
      /** Returns a thread-local 1024-char array. */
      static char[] charBufferFromThreadLocal() {
        // requireNonNull accommodates Android's @RecentlyNullable annotation on ThreadLocal.get
        return requireNonNull(DEST_TL.get());
      }
    
      /**
       * A thread-local destination buffer to keep us from creating new buffers. The starting size is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/names.go

    )
    
    // ValidateSignerName checks that signerName is syntactically valid.
    //
    // ensure signerName is of the form domain.com/something and up to 571 characters.
    // This length and format is specified to accommodate signerNames like:
    // <fqdn>/<resource-namespace>.<resource-name>.
    // The max length of a FQDN is 253 characters (DNS1123Subdomain max length)
    // The max length of a namespace name is 63 characters (DNS1123Label max length)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/inheritance.apt

      future. Therefore, we should rename this file from pom.xml in the maven-core
      jarfile to pom-4.0.0.xml (and successive revisions to the base pom made to
      accommodate changes in the model will be named accordingly - 4.0.1, 4.0.2, ...).
    
    Minimum Element-Set for a Project POM
    
      In order to furnish a basic set of information which we need to distinguish one
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. cmd/erasure-encode.go

    				p.writers[i] = nil
    			}
    		} else {
    			p.writers[i] = nil
    		}
    	}
    
    	// If nilCount >= p.writeQuorum, we return nil. This is because HealFile() uses
    	// CreateFile with p.writeQuorum=1 to accommodate healing of single disk.
    	// i.e if we do no return here in such a case, reduceWriteQuorumErrs() would
    	// return a quorum error to HealFile().
    	nilCount := countErrs(p.errs, nil)
    	if nilCount >= p.writeQuorum {
    		return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top