Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 726 for mean_t (0.11 sec)

  1. staging/src/k8s.io/api/policy/v1/types.go

    	//
    	// IfHealthyBudget policy means that running pods (status.phase="Running"),
    	// but not yet healthy can be evicted only if the guarded application is not
    	// disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pkg/scheduler/metrics/metrics.go

    		&metrics.GaugeOpts{
    			Subsystem:      SchedulerSubsystem,
    			Name:           "pending_pods",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    func ValueOrDefault(intOrPercent *IntOrString, defaultValue IntOrString) *IntOrString {
    	if intOrPercent == nil {
    		return &defaultValue
    	}
    	return intOrPercent
    }
    
    // GetScaledValueFromIntOrPercent is meant to replace GetValueFromIntOrPercent.
    // This method returns a scaled value from an IntOrString type. If the IntOrString
    // is a percentage string value it's treated as a percentage and scaled appropriately
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/os/file_unix.go

    type newFileKind int
    
    const (
    	// kindNewFile means that the descriptor was passed to us via NewFile.
    	kindNewFile newFileKind = iota
    	// kindOpenFile means that the descriptor was opened using
    	// Open, Create, or OpenFile.
    	kindOpenFile
    	// kindPipe means that the descriptor was opened using Pipe.
    	kindPipe
    	// kindSock means that the descriptor is a network file descriptor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/math/big/floatmarsh.go

    		//   (in practice, this should never happen since rounding
    		//   takes care of it, but be safe and do it always)
    		if len(x.mant) < n {
    			n = len(x.mant)
    		}
    		// len(x.mant) >= n
    		sz += 4 + n*_S // exp + mant
    	}
    	buf := make([]byte, sz)
    
    	buf[0] = floatGobVersion
    	b := byte(x.mode&7)<<5 | byte((x.acc+1)&3)<<3 | byte(x.form&3)<<1
    	if x.neg {
    		b |= 1
    	}
    	buf[1] = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types.go

    // These are built-in conditions of a job.
    const (
    	// JobSuspended means the job has been suspended.
    	JobSuspended JobConditionType = "Suspended"
    	// JobComplete means the job has completed its execution.
    	JobComplete JobConditionType = "Complete"
    	// JobFailed means the job has failed its execution.
    	JobFailed JobConditionType = "Failed"
    	// FailureTarget means the job is about to fail its execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/runtime/trace/65319.md

    <!-- go.dev/issue/65319 -->
    The runtime now explicitly flushes trace data when a program crashes due to an
    uncaught panic. This means that more complete trace data will be available in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:37:09 UTC 2024
    - 241 bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/config/types.go

    	PVClaimBinderSyncPeriod metav1.Duration
    	// volumeConfiguration holds configuration for volume related features.
    	VolumeConfiguration VolumeConfiguration
    }
    
    // VolumeConfiguration contains *all* enumerated flags meant to configure all volume
    // plugins. From this config, the controller-manager binary will create many instances of
    // volume.VolumeConfig, each containing only the configuration needed for that plugin which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      are not Modified Works.
    
    "Contributor" means any person or entity that Distributes the Program.
    
    "Licensed Patents" mean patent claims licensable by a Contributor which
    are necessarily infringed by the use or sale of its Contribution alone
    or when combined with the Program.
    
    "Program" means the Contributions Distributed in accordance with this
    Agreement.
    
    "Recipient" means anyone who receives the Program under this Agreement
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

         *
         * @param suppressWildcards indicates whether wild cards in type arguments need to be suppressed or not,
         * e.g., according to the annotation on the containing declarations.
         * - `true` means they should be suppressed.
         * - `false` means they should appear.
         * - `null` is no-op by default, i.e., their suppression/appearance is determined by type annotations.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top