Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for pinList (0.31 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. staging/src/k8s.io/apiserver/pkg/audit/format.go

    }
    
    func auditStringSlice(inList []string) string {
    	quotedElements := make([]string, len(inList))
    	for i, in := range inList {
    		quotedElements[i] = fmt.Sprintf("%q", in)
    	}
    	return strings.Join(quotedElements, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 25 12:23:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. pkg/util/oom/oom_linux.go

    		continueAdjusting := false
    		pidList, err := oomAdjuster.pidLister(cgroupName)
    		if err != nil {
    			if os.IsNotExist(err) {
    				// Nothing to do since the container doesn't exist anymore.
    				return os.ErrNotExist
    			}
    			continueAdjusting = true
    			klog.V(10).Infof("Error getting process list for cgroup %s: %+v", cgroupName, err)
    		} else if len(pidList) == 0 {
    			klog.V(10).Infof("Pid list is empty")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. LICENSE

    any free program.  We wish to make sure that a company cannot
    effectively restrict the users of a free program by obtaining a
    restrictive license from a patent holder.  Therefore, we insist that
    any patent license obtained for a version of the library must be
    consistent with the full freedom of use specified in this license.
    
      Most GNU software, including some libraries, is covered by the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
Back to top