Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 804 for mean_t (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/mbarrier.go

    	// pass a type here.
    	//
    	// See the comment on bulkBarrierPreWrite.
    	bulkBarrierPreWrite(uintptr(dst), uintptr(src), typ.PtrBytes, typ)
    }
    
    // reflect_typedmemmove is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    The supported suffixes include B, KiB, MiB, GiB, and TiB. These suffixes
    represent quantities of bytes as defined by the IEC 80000-13 standard. That is,
    they are based on powers of two: KiB means 2^10 bytes, MiB means 2^20 bytes,
    and so on. The default setting is [math.MaxInt64], which effectively disables the
    memory limit. [runtime/debug.SetMemoryLimit] allows changing this limit at run
    time.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pkg/volume/hostpath/host_path.go

    // This implementation is meant for testing only and only works in a single node cluster.
    type hostPathProvisioner struct {
    	host     volume.VolumeHost
    	options  volume.VolumeOptions
    	plugin   *hostPathPlugin
    	basePath string
    }
    
    // Create for hostPath simply creates a local /tmp/%/%s directory as a new PersistentVolume, default /tmp/hostpath_pv/%s.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/sha3/doc.go

    //
    // A sponge is parameterized by its generic security strength, which is equal
    // to half its capacity; capacity + rate is equal to the permutation's width.
    // Since the KeccakF-1600 permutation is 1600 bits (200 bytes) wide, this means
    // that the security strength of a sponge instance is equal to (1600 - bitrate) / 2.
    //
    // # Recommendations
    //
    // The SHAKE functions are recommended for most new uses. They can produce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** The symbol `]` can be used instead of `(` for an exclusive lower bound, and `[` instead of `)` for exclusive upper bound. e.g `]1.0, 2.0[`
    ** An upper bound exclude acts as a prefix exclude.
    This means that `[1.0, 2.0[` will also exclude all versions starting with `2.0` that are smaller than `2.0`.
    For example versions like `2.0-dev1` or `2.0-SNAPSHOT` are no longer included in the range.
    * A _prefix_ version range: e.g. `1.\+`, `1.3.+`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top