Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 227 for daysIn (0.12 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

            checkout.setLastModified(checkout.lastModified() - TimeUnit.DAYS.toMillis(10))
        }
    
        TestFile gcFile() {
            file(".gradle/vcs-1/gc.properties")
        }
    
        void cleanupNow() {
            gcFile().assertIsFile()
            gcFile().lastModified = System.currentTimeMillis() - TimeUnit.DAYS.toMillis(60)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testcerts/gencerts.sh

    EOF
    
    # Create a certificate authority
    openssl genrsa -out CAKey.pem 2048
    openssl req -x509 -new -nodes -key CAKey.pem -days 100000 -out CACert.pem -subj "/CN=${CN_BASE}_ca"
    
    # Create a second certificate authority
    openssl genrsa -out BadCAKey.pem 2048
    openssl req -x509 -new -nodes -key BadCAKey.pem -days 100000 -out BadCACert.pem -subj "/CN=${CN_BASE}_ca"
    
    # Create a server certiticate
    openssl genrsa -out ServerKey.pem 2048
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 24 05:55:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle-handlers_test.go

    			secretKey:          creds.SecretKey,
    			body:               []byte(`<LifecycleConfiguration><Rule><ID>id</ID><Filter><Prefix>logs/</Prefix><Tag><Key>Key1</Key><Value>Value1</Value></Tag></Filter><Status>Enabled</Status><Expiration><Days>365</Days></Expiration></Rule></LifecycleConfiguration>`),
    			expectedRespStatus: http.StatusBadRequest,
    			lifecycleResponse:  []byte(``),
    			errorResponse: APIErrorResponse{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_env_web.properties

    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. .github/workflows/missing_playground.yml

            stale-issue-label: "status:stale"
            days-before-stale: 0
            days-before-close: 30
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_env_suggest.properties

    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  7. security/pkg/pki/testdata/multilevelpki/ecc-certs.sh

    Istio
    Test
    Root CA
    ******@****.***
    
    
    EOF
    openssl x509 -req -days 3650 -in ecc-root-cert.csr -sha256 -signkey ecc-root-key.pem -out ecc-root-cert.pem
    
    # Intermediate CA
    #openssl ecparam -genkey -name prime256v1 -out ecc-int-key.pem -noout
    openssl req -new -key ecc-int-key.pem -out ecc-int-cert.csr -config int-cert.cfg -batch -sha256
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 16 19:54:33 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/typeconversion/TimeUnitsParser.java

        public NormalizedTimeUnit parseNotation(CharSequence notation, int value) {
            String candidate = notation.toString().toUpperCase();
            //jdk5 does not have days, hours or minutes, normalizing to millis
            switch (candidate) {
                case "DAYS":
                    return millis(value * 24 * 60 * 60 * 1000);
                case "HOURS":
                    return millis(value * 60 * 60 * 1000);
                case "MINUTES":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 25 21:38:50 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/lifecycle.go

    // modification time plus the number of transition/restore days.
    //
    //	e.g. If the object modtime is `Thu May 21 13:42:50 GMT 2020` and the object should
    //	    transition in 1 day, then the expected transition time is `Fri, 23 May 2020 00:00:00 GMT`
    func ExpectedExpiryTime(modTime time.Time, days int) time.Time {
    	if days == 0 {
    		return modTime
    	}
    	t := modTime.UTC().Add(time.Duration(days+1) * 24 * time.Hour)
    	return t.Truncate(24 * time.Hour)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. tools/certs/Makefile.selfsigned.mk

    ##root-ca:	generate root CA files (key and certificate) in current directory.
    .PHONY: root-ca
    
    root-ca: root-key.pem root-cert.pem
    
    root-cert.pem: root-cert.csr root-key.pem
    	@echo "generating $@"
    	@openssl x509 -req -sha256 -days $(ROOTCA_DAYS) -signkey root-key.pem \
    		-extensions req_ext -extfile root-ca.conf \
    		-in $< -out $@
    
    root-cert.csr: root-key.pem root-ca.conf
    	@echo "generating $@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top