Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 160 for pub2 (0.16 sec)

  1. src/time/zoneinfo_read.go

    // Parse "zoneinfo" time zone file.
    // This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others.
    // See tzfile(5), https://en.wikipedia.org/wiki/Zoneinfo,
    // and ftp://munnari.oz.au/pub/oldtz/
    
    package time
    
    import (
    	"errors"
    	"internal/bytealg"
    	"runtime"
    	"syscall"
    	_ "unsafe" // for linkname
    )
    
    // registerLoadFromEmbeddedTZData is called by the time/tzdata package,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			4. apiserver verifies the client certificate sent against its cluster certificate authority data
    
    			description:
    				here, with this block,
    				apiserver certificate and pub key data (along with priv key)get loaded into server.SecureServingInfo
    				for client to later in the step 2 verify the apiserver certificate during the handshake
    				when making a request
    
    			normal args related to this stage:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    We will walk you through the process of diagnosing a cache miss.
    Let's say we have build `A` and build `B` and we expected all the test tasks for a sub-project `sub1` to be cached in build `B` since only a unit test for another sub-project `sub2` changed.
    Instead, all the tests for the sub-project have been executed.
    Since we have the cascading effect when we have cache misses, we need to find the task which caused the caching chain to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/time/zoneinfo.go

    	// The tzdata information can be followed by a string that describes
    	// how to handle DST transitions not recorded in zoneTrans.
    	// The format is the TZ environment variable without a colon; see
    	// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html.
    	// Example string, for America/Los_Angeles: PST8PDT,M3.2.0,M11.1.0
    	extend string
    
    	// Most lookups will be for the current time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

                    while (pks.hasNext()) {
                        boolean hasUid = false;
                        PGPPublicKey pk = pks.next();
                        String keyType = pk.isMasterKey() ? "pub" : "sub";
                        out.write((keyType + "    " + SecuritySupport.toLongIdHexString(pk.getKeyID()).toUpperCase() + "\n").getBytes(StandardCharsets.US_ASCII));
                        List<String> userIDs = PGPUtils.getUserIDs(pk);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. src/image/png/writer.go

    			}
    		}
    
    		// Apply the filter.
    		// Skip filter for NoCompression and paletted images (cbP8) as
    		// "filters are rarely useful on palette images" and will result
    		// in larger files (see http://www.libpng.org/pub/png/book/chapter09.html).
    		f := ftNone
    		if level != zlib.NoCompression && cb != cbP8 && cb != cbP4 && cb != cbP2 && cb != cbP1 {
    			// Since we skip paletted images we don't have to worry about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. src/runtime/sema.go

    	// addresses, it is kept balanced on average by maintaining a heap ordering
    	// on the ticket: s.ticket <= both s.prev.ticket and s.next.ticket.
    	// https://en.wikipedia.org/wiki/Treap
    	// https://faculty.washington.edu/aragon/pubs/rst89.pdf
    	//
    	// s.ticket compared with zero in couple of places, therefore set lowest bit.
    	// It will not affect treap's quality noticeably.
    	s.ticket = cheaprand() | 1
    	s.parent = last
    	*pt = s
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    		if err != nil {
    			bugLogIf(ctx, err)
    			return nil
    		}
    		return out
    	}
    }
    
    func bytesToPublicKey(pub []byte) (*rsa.PublicKey, error) {
    	block, _ := pem.Decode(pub)
    	if block != nil {
    		pub = block.Bytes
    	}
    	key, err := x509.ParsePKCS1PublicKey(pub)
    	if err != nil {
    		return nil, err
    	}
    	return key, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation_test.go

    func mustMakeCertificate(t *testing.T, template *x509.Certificate) []byte {
    	gen := mathrand.New(mathrand.NewSource(12345))
    
    	pub, priv, err := ed25519.GenerateKey(gen)
    	if err != nil {
    		t.Fatalf("Error while generating key: %v", err)
    	}
    
    	cert, err := x509.CreateCertificate(gen, template, template, pub, priv)
    	if err != nil {
    		t.Fatalf("Error while making certificate: %v", err)
    	}
    
    	return cert
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    		t.Errorf("unexpected certificate path: %s", keyPath)
    	}
    }
    
    func TestPathForPublicKey(t *testing.T) {
    	pubPath := pathForPublicKey("/foo", "bar")
    	expectedPath := filepath.FromSlash("/foo/bar.pub")
    	if pubPath != expectedPath {
    		t.Errorf("unexpected certificate path: %s", pubPath)
    	}
    }
    
    func TestPathForCSR(t *testing.T) {
    	csrPath := pathForCSR("/foo", "bar")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top