Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 789 for Rays (0.29 sec)

  1. .github/stale.yml

    # Configuration for probot-stale - https://github.com/probot/stale
    
    # Number of days of inactivity before an Issue or Pull Request becomes stale
    daysUntilStale: 30
    
    # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
    # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
    daysUntilClose: 15
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 04:36:59 UTC 2022
    - 2K 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. internal/bucket/object/lock/lock.go

    	}
    
    	if retention.Days == nil && retention.Years == nil {
    		return fmt.Errorf("either Days or Years must be specified")
    	}
    
    	if retention.Days != nil && retention.Years != nil {
    		return fmt.Errorf("either Days or Years must be specified, not both")
    	}
    
    	//nolint:gocritic
    	if retention.Days != nil {
    		if *retention.Days == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. samples/jwt-server/testdata/README.MD

    # SAN Certificate Creation with OpenSSL
    
    ### Creating CA
    
    ```
    openssl genrsa -out ca.key 2048
    
    openssl req -new -x509 -days 3650 -key ca.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=Acme Root CA" -out ca.crt
    ```
    
    ### Creating Server Certificate
    ```
    openssl req -newkey rsa:2048 -nodes -keyout server.key -subj "/C=US/ST=AZ/O=Acme, Inc./CN=*.com" -out server.csr
    ```
    
    ### Signing Certificate with CA
    ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 12 01:55:25 UTC 2022
    - 566 bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/cache/FileAccessTimeJournalFixture.groovy

            }
        }
    
        void writeJournalInceptionTimestamp(long millis) {
            fileAccessPropertiesFile.text = "${INCEPTION_TIMESTAMP_KEY} = $millis"
        }
    
        long daysAgo(long days) {
            System.currentTimeMillis() - DAYS.toMillis(days)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. security/pkg/pki/testdata/multilevelpki/certs.sh

    California
    Sunnyvale
    Istio
    Test
    Root CA
    ******@****.***
    
    
    EOF
    openssl x509 -req -days 3650 -in root-cert.csr -sha256 -signkey root-key.pem -out root-cert.pem
    
    # Intermediate CA
    #openssl genrsa -out int-key.pem 4096
    openssl req -new -key int-key.pem -out int-cert.csr -config int-cert.cfg -batch -sha256
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/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=webhook_authz_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=webhook_authz_ca"
    
    # Create a server certiticate
    openssl genrsa -out serverKey.pem 2048
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  8. tests/testdata/certs/generate.sh

    subjectAltName = @alt_names
    [alt_names]
    DNS = cluster.local
    EOF
    
    # Create a certificate authority
    openssl genrsa -out "${WD}/pilot/ca-key.pem" 2048
    openssl req -x509 -new -nodes -key "${WD}/pilot/ca-key.pem" -days 100000 -out "${WD}/pilot/root-cert.pem" -subj "/CN=cluster.local"
    cp "${WD}/pilot/root-cert.pem" "${WD}/default/root-cert.pem"
    cp "${WD}/pilot/root-cert.pem" "${WD}/dns/root-cert.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. 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)
  10. internal/bucket/lifecycle/noncurrentversion.go

    	NoncurrentDays          ExpirationDays `xml:"NoncurrentDays,omitempty"`
    	NewerNoncurrentVersions int            `xml:"NewerNoncurrentVersions,omitempty"`
    	set                     bool
    }
    
    // MarshalXML if non-current days not set to non zero value
    func (n NoncurrentVersionExpiration) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
    	if n.IsNull() {
    		return nil
    	}
    	type noncurrentVersionExpirationWrapper NoncurrentVersionExpiration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 14 17:41:44 UTC 2021
    - 5.3K bytes
    - Viewed (0)
Back to top