Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 285 for SELF (0.14 sec)

  1. security/pkg/pki/util/generate_cert.go

    // CA private key. Only called by a self-signed Citadel.
    func GenRootCertFromExistingKey(options CertOptions) (pemCert []byte, pemKey []byte, err error) {
    	if !options.IsSelfSigned || len(options.SignerPrivPem) == 0 {
    		return nil, nil, fmt.Errorf("skip cert " +
    			"generation. Citadel is not in self-signed mode or CA private key is not " +
    			"available")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

        return requests.get(url, **kwargs)
    
    
    class Writer(object):
        def __init__(self, filename):
            self.file = open(filename, 'w')
    
        def write(self, data):
            self.file.write(data)
    
        def flush(self):
            self.file.flush()
    
    
    if __name__ == '__main__':
        if len(sys.argv) < 2:
            logging.error("usage: %s port" % (sys.argv[0]))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            public void nagUser() {
                DeprecationLogger.nagUserWith(builder, WithDocumentation.class);
            }
        }
    
        public static abstract class WithReplacement<T, SELF extends WithReplacement<T, SELF>> extends DeprecationMessageBuilder<SELF> {
            protected final String subject;
            private T replacement;
    
            WithReplacement(String subject) {
                this.subject = subject;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    	SelfSignedCACertTTL = env.Register("CITADEL_SELF_SIGNED_CA_CERT_TTL",
    		cmd.DefaultSelfSignedCACertTTL,
    		"The TTL of self-signed CA root certificate.")
    
    	selfSignedRootCertCheckInterval = env.Register("CITADEL_SELF_SIGNED_ROOT_CERT_CHECK_INTERVAL",
    		cmd.DefaultSelfSignedRootCertCheckInterval,
    		"The interval that self-signed CA checks its root certificate "+
    			"expiration time and rotates root certificate. Setting this interval "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/ValueGraph.java

       * undirected edges connect a pair of nodes to each other.
       */
      @Override
      boolean isDirected();
    
      /**
       * Returns true if this graph allows self-loops (edges that connect a node to itself). Attempting
       * to add a self-loop to a graph that does not allow them will throw an {@link
       * IllegalArgumentException}.
       */
      @Override
      boolean allowsSelfLoops();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/ValueGraph.java

       * undirected edges connect a pair of nodes to each other.
       */
      @Override
      boolean isDirected();
    
      /**
       * Returns true if this graph allows self-loops (edges that connect a node to itself). Attempting
       * to add a self-loop to a graph that does not allow them will throw an {@link
       * IllegalArgumentException}.
       */
      @Override
      boolean allowsSelfLoops();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Graph.java

       * undirected edges connect a pair of nodes to each other.
       */
      @Override
      boolean isDirected();
    
      /**
       * Returns true if this graph allows self-loops (edges that connect a node to itself). Attempting
       * to add a self-loop to a graph that does not allow them will throw an {@link
       * IllegalArgumentException}.
       */
      @Override
      boolean allowsSelfLoops();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Graph.java

       * undirected edges connect a pair of nodes to each other.
       */
      @Override
      boolean isDirected();
    
      /**
       * Returns true if this graph allows self-loops (edges that connect a node to itself). Attempting
       * to add a self-loop to a graph that does not allow them will throw an {@link
       * IllegalArgumentException}.
       */
      @Override
      boolean allowsSelfLoops();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. security/pkg/pki/util/keycertbundle_test.go

    	anotherKeyFile      = "../testdata/key.pem"
    	anotherRootCertFile = "../testdata/cert.pem"
    	// These key/cert contain workload key/cert, and a self-signed root cert,
    	// all with TTL 100 years.
    	rootCertFile1    = "../testdata/self-signed-root-cert.pem"
    	certChainFile1   = "../testdata/workload-cert.pem"
    	keyFile1         = "../testdata/workload-key.pem"
    	ecRootCertFile   = "../testdata/ec-root-cert.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			return fmt.Errorf("unable to generate self signed cert: %v", err)
    		} else if len(keyCert.CertFile) > 0 && len(keyCert.KeyFile) > 0 {
    			if err := certutil.WriteCert(keyCert.CertFile, cert); err != nil {
    				return err
    			}
    			if err := keyutil.WriteKey(keyCert.KeyFile, key); err != nil {
    				return err
    			}
    			klog.Infof("Generated self-signed cert (%s, %s)", keyCert.CertFile, keyCert.KeyFile)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top