Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for E2 (0.13 sec)

  1. src/slices/slices.go

    // EqualFunc returns false. Otherwise, the elements are compared in
    // increasing index order, and the comparison stops at the first index
    // for which eq returns false.
    func EqualFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, eq func(E1, E2) bool) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	for i, v1 := range s1 {
    		v2 := s2[i]
    		if !eq(v1, v2) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        return ImmutableSortedSet.of(e1, e2);
      }
    
      @Override
      protected <E extends Comparable<? super E>> SortedSet<E> of(E e1, E e2, E e3) {
        return ImmutableSortedSet.of(e1, e2, e3);
      }
    
      @Override
      protected <E extends Comparable<? super E>> SortedSet<E> of(E e1, E e2, E e3, E e4) {
        return ImmutableSortedSet.of(e1, e2, e3, e4);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

                =======
                message
                message 2
                '''))
    
            when:
            result.assertOutputContains("post build")
    
            then:
            def e2 = thrown(AssertionError)
            error(e2).startsWith(error('''
                Did not find expected text in build output.
                Expected: post build
    
                Build output:
                =======
                message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-AES256-GCM-SHA384

    00000250  3b 4b 4b bd 64 7e e6 53  87 cb 6d 2f 78 1c 67 cf  |;KK.d~.S..m/x.g.|
    00000260  13 21 e0 ec 1b d7 d8 aa  06 a0 0e d5 86 6f ba 1e  |.!...........o..|
    00000270  97 e2 8c 9b 86 e2 8a 4d  62 1a bd 35 0e 2d 63 18  |.......Mb..5.-c.|
    00000280  a1 1f 7c ed fc 3b 89 c2  00 6d da 01 42 0a 47 95  |..|..;...m..B.G.|
    00000290  12 8e 01 82 62 58 f9 96  eb a9 aa c3 f8 96 ec 20  |....bX......... |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-RSA

    00000060  00 00 16 03 01 02 59 0b  00 02 55 00 02 52 00 02  |......Y...U..R..|
    00000070  4f 30 82 02 4b 30 82 01  b4 a0 03 02 01 02 02 09  |O0..K0..........|
    00000080  00 e8 f0 9d 3f e2 5b ea  a6 30 0d 06 09 2a 86 48  |....?.[..0...*.H|
    00000090  86 f7 0d 01 01 0b 05 00  30 1f 31 0b 30 09 06 03  |........0.1.0...|
    000000a0  55 04 0a 13 02 47 6f 31  10 30 0e 06 03 55 04 03  |U....Go1.0...U..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/FileOperationsTest.java

                    try {
                        f.copyTo(t);
                        assertTrue(f.exists());
    
                        try ( SmbResource e2 = new SmbFile(t, "test") ) {
                            assertTrue(e2.exists());
                            try ( InputStream is = e2.openInputStream() ) {
                                ReadWriteTest.verifyRandom(bufSize, length, is);
                            }
                        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:17:59 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    // matchError returns true if errors match, false if they don't, compares by error message only for convenience which should be sufficient for these tests
    func matchErrors(e1, e2 error) bool {
    	if e1 == nil && e2 == nil {
    		return true
    	}
    	if e1 != nil && e2 != nil {
    		return e1.Error() == e2.Error()
    	}
    	return false
    }
    
    // testServerAndClientConfig returns a server that listens and a config that can reference it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. src/mime/mediatype_test.go

    		// #attwithfilenamepctandiso
    		{`attachment; name="ä-%41.html"`,
    			"attachment",
    			m("name", "ä-%41.html")},
    		// #attwithfnrawpctenclong
    		{`attachment; filename="foo-%c3%a4-%e2%82%ac.html"`,
    			"attachment",
    			m("filename", "foo-%c3%a4-%e2%82%ac.html")},
    		// #attwithasciifilenamews1
    		{`attachment; filename ="foo.html"`,
    			"attachment",
    			m("filename", "foo.html")},
    		// #attmissingdisposition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/eventbus/EventBus.java

        checkNotNull(context);
        try {
          exceptionHandler.handleException(e, context);
        } catch (Throwable e2) {
          // if the handler threw an exception... well, just log it
          logger.log(
              Level.SEVERE,
              String.format(Locale.ROOT, "Exception %s thrown while handling exception: %s", e2, e),
              e2);
        }
      }
    
      /**
       * Registers all subscriber methods on {@code object} to receive events.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/FilteringClassLoaderTest.groovy

            ClassNotFoundException e = thrown()
            e.message == "$Test.name not found."
    
            when:
            classLoader.loadClass(Test.class.name)
    
            then:
            ClassNotFoundException e2 = thrown()
            e2.message == "$Test.name not found."
        }
    
        void filtersPackagesByDefault() {
            given:
            assert classLoader.parent.getPackage('org.junit') != null
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top