Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for sanje (0.05 sec)

  1. src/main/webapp/js/admin/moment-with-locales.min.js

    rn e+"er";default:case"M":case"Q":case"DDD":case"d":case"w":case"W":return e}},week:{dow:1,doy:4},meridiemParse:/rati|sokalli|donparam|sanje/,meridiemHour:function(e,a){return 12===e&&(e=0),"rati"===a?e<4?e:e+12:"sokalli"===a?e:"donparam"===a?12<e?e:e+12:"sanje"===a?e+12:void 0},meridiem:function(e,a,t){return e<4?"rati":e<12?"sokalli":e<16?"donparam":e<20?"sanje":"rati"}});var Fs={1:"\u0ae7",2:"\u0ae8",3:"\u0ae9",4:"\u0aea",5:"\u0aeb",6:"\u0aec",7:"\u0aed",8:"\u0aee",9:"\u0aef",0:"\u0ae6"},zs={...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v1.go

    	xlStorageFormatFileV1 = "xl.json"
    )
    
    // Valid - tells us if the format is sane by validating
    // format version and erasure coding information.
    func (m *xlMetaV1Object) valid() bool {
    	return isXLMetaFormatValid(m.Version, m.Format) &&
    		isXLMetaErasureInfoValid(m.Erasure.DataBlocks, m.Erasure.ParityBlocks)
    }
    
    // Verifies if the backend format metadata is sane by validating
    // the version string and format style.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pkg/kubelet/config/defaults.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // Defines sane defaults for the kubelet config.
    const (
    	DefaultKubeletPodsDirName                = "pods"
    	DefaultKubeletVolumesDirName             = "volumes"
    	DefaultKubeletVolumeSubpathsDirName      = "volume-subpaths"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 00:57:47 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. hack/verify-e2e-suites.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks that all E2E test suites are sane, i.e. can be
    # started without an error.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 17:35:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/BuildProfileTest.groovy

            profile.buildStarted = new GregorianCalendar(2010, 1, 1, 12, 25).getTimeInMillis()
    
            then:
            profile.buildStartedDescription == "Started on: 2010/02/01 - 12:25:00"
        }
    
        def "provides sane elapsed times if configuration phase skipped"() {
            given:
            def buildStartedAt = 1000L
            def buildFinishedAt = 2000L
            def startParameter = new StartParameter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:15:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

        private final MessageBuilderFactory messageBuilderFactory;
    
        /**
         * Default ctor is used in IT and most probably some 3rd party code. For those cases, we do provide sane defaults
         * but given this is a component, injection should be used, replacing direct instantiation.
         *
         * @deprecated Do not use this ctor directly, inject this component instead.
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/options/admission.go

    // Note:
    //
    //	In addition it calls RegisterAllAdmissionPlugins to register
    //	all kube-apiserver admission plugins.
    //
    //	Provides the list of RecommendedPluginOrder that holds sane values
    //	that can be used by servers that don't care about admission chain.
    //	Servers that do care can overwrite/append that field after creation.
    func NewAdmissionOptions() *AdmissionOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    	// Required to pass validation and fuzzer tests. These fields are missing in v1beta3, thus we have to
    	// default them to a sane (default) value in the internal type.
    	out.EncryptionAlgorithm = kubeadm.EncryptionAlgorithmRSA2048
    	out.CertificateValidityPeriod = &metav1.Duration{Duration: constants.CertificateValidityPeriod}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

          processCalled--; // don't count the tail invocation (makes tests a bit more understandable)
        }
    
        // ensures that the number of invocations looks sane
        void assertInvariants(int expectedBytes) {
          // we should have seen as many bytes as the next multiple of chunk after expectedBytes - 1
          assertEquals(out.toByteArray().length, ceilToMultiple(expectedBytes, chunkSize));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. test-site/activator

      is_function_defined process_my_args && {
        myargs=("${residual_args[@]}")
        residual_args=()
        process_my_args "${myargs[@]}"
      }
    }
    
    # Actually runs the script.
    run() {
      # TODO - check for sane environment
    
      # process the combined args, then reset "$@" to the residuals
      process_args "$@"
      detect_terminal_for_ui
      set -- "${residual_args[@]}"
      argumentCount=$#
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
Back to top