Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for pinList (0.17 sec)

  1. okhttp/src/test/java/okhttp3/CertificatePinnerKotlinTest.kt

      @Test fun testMatchesSha1() {
        val pin = Pin("example.com", certC1Sha1Pin)
        assertTrue(pin.matchesCertificate(certC1.certificate))
        assertFalse(pin.matchesCertificate(certB1.certificate))
      }
    
      @Test fun pinList() {
        val builder =
          CertificatePinner.Builder()
            .add("example.com", CertificatePinnerTest.certA1Sha256Pin)
            .add("www.example.com", CertificatePinnerTest.certA1Sha256Pin)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CertificatePinnerTest.kt

        Assertions.assertTrue(pin.matchesCertificate(certC1.certificate))
        Assertions.assertFalse(pin.matchesCertificate(certB1.certificate))
      }
    
      @Test
      fun pinList() {
        val builder =
          CertificatePinner.Builder()
            .add("example.com", certA1Sha256Pin)
            .add("www.example.com", certA1Sha256Pin)
        val certificatePinner = builder.build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            qrList.calculatePageInfo();
            pnList = qrList.getPageNumberList();
            assertEquals(6, pnList.size());
            assertEquals("1", pnList.get(0));
            assertEquals("2", pnList.get(1));
            assertEquals("3", pnList.get(2));
            assertEquals("4", pnList.get(3));
            assertEquals("5", pnList.get(4));
            assertEquals("6", pnList.get(5));
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

            if (!exList.contains(e)) {
                exList.add(e);
            }
    
            List<MetadataGraphEdge> inList = incidentEdges.computeIfAbsent(vTo, k -> new ArrayList<>());
    
            if (!inList.contains(e)) {
                inList.add(e);
            }
    
            return this;
        }
        // ------------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMapEntry.java

       * created arrays to have a {@code @Nullable} element type even when they're created directly with
       * {@code new ImmutableMapEntry[...]}, so it seems silly to insist on that only here.
       */
      @SuppressWarnings("unchecked") // Safe as long as the javadocs are followed
      static <K, V> ImmutableMapEntry<K, V>[] createEntryArray(int size) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *           CU_FALSE otherwise.
     *  @see CU_initialize_registry
     *  @see CU_cleanup_registry
     */
    
    CU_EXPORT 
    CU_pSuite CU_add_suite(const char *strName, 
                           CU_InitializeFunc pInit, 
                           CU_CleanupFunc pClean);
    /**<
     *  Creates a new test suite and adds it to the test registry.
     *  This function creates a new test suite having the specified
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/link.go

    	// and the actual behavior on GitHub,
    	// www.example.com$foo turns into <a href="https://www.example.com$foo">,
    	// but that makes the character restrictions in the valid-domain check
    	// almost meaningless. So we insist that when all is said and done,
    	// if the domain is followed by anything, that thing must be a slash,
    	// even though GitHub is not that picky.
    	// People might complain about www.example.com:1234 not working,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			// before deleting the last old server, and in between
    			// those two operations the last old server crashes and
    			// recovers. The chosen solution is making this controller
    			// insist on maintaining the particular state that it
    			// establishes.
    			if !(apiequality.Semantic.DeepEqual(oldFS.Spec, newFS.Spec) &&
    				apiequality.Semantic.DeepEqual(oldFS.Status, newFS.Status)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    	}
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func sigInstallGoHandler(sig uint32) bool {
    	// For some signals, we respect an inherited SIG_IGN handler
    	// rather than insist on installing our own default handler.
    	// Even these signals can be fetched using the os/signal package.
    	switch sig {
    	case _SIGHUP, _SIGINT:
    		if atomic.Loaduintptr(&fwdSig[sig]) == _SIG_IGN {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/time/format.go

    // strictly allowed by RFC 1123. This will result in an error when parsing
    // date strings that occur in the first 9 days of a given month.
    // In general [RFC1123Z] should be used instead of [RFC1123] for servers
    // that insist on that format, and [RFC3339] should be preferred for new protocols.
    // [RFC3339], [RFC822], [RFC822Z], [RFC1123], and [RFC1123Z] are useful for formatting;
    // when used with time.Parse they do not accept all the time formats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top