Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1031 - 1040 of 3,090 for False (0.03 sec)

  1. android/guava/src/com/google/common/base/PairwiseEquivalence.java

        Iterator<T> iteratorB = iterableB.iterator();
    
        while (iteratorA.hasNext() && iteratorB.hasNext()) {
          if (!elementEquivalence.equivalent(iteratorA.next(), iteratorB.next())) {
            return false;
          }
        }
    
        return !iteratorA.hasNext() && !iteratorB.hasNext();
      }
    
      @Override
      protected int doHash(Iterable<T> iterable) {
        int hash = 78721;
        for (T element : iterable) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_sql_databases/test_tutorial001.py

            clear_sqlmodel()
            importlib.reload(mod)
        mod.sqlite_url = "sqlite://"
        mod.engine = create_engine(
            mod.sqlite_url, connect_args={"check_same_thread": False}, poolclass=StaticPool
        )
    
        with TestClient(mod.app) as c:
            yield c
    
    
    def test_crud_app(client: TestClient):
        # TODO: this warns that SQLModel.from_orm is deprecated in Pydantic v1, refactor
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    	expected bool
    }{
    	{[]byte(""), "", false},
    	{[]byte(""), "a", false},
    	{[]byte(""), "abc", false},
    	{[]byte("a"), "", false},
    	{[]byte("a"), "a", true},
    	{[]byte("aaa"), "a", true},
    	{[]byte("abc"), "xyz", false},
    	{[]byte("abc"), "xcz", true},
    	{[]byte("a☺b☻c☹d"), "uvw☻xyz", true},
    	{[]byte("aRegExp*"), ".(|)*+?^$[]", true},
    	{[]byte(dots + dots + dots), " ", false},
    }
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 19 19:09:04 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/index.jsp

    				<div id="content" class="container">
    					<div class="navbar-brand"></div>
    					<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar"
    							aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
    						<span class="navbar-toggler-icon"></span>
    					</button>
    					<div class="collapse navbar-collapse" id="navbar">
    						<div class="mr-auto"></div>
    						<ul class="nav navbar-nav">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/RepositorySystemTest.java

            assertEquals(
                    "true",
                    depArtifact.getProperty("constitutesBuildPath", null)); // shouldn't it be false given the classifier?
            assertEquals("false", depArtifact.getProperty("includesDependencies", null));
            assertEquals(4, depArtifact.getProperties().size());
        }
    
        @Test
        void testCollectDependencies() throws Exception {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

                            rr.getId(),
                            rr.getPolicy(false).isEnabled(),
                            rr.getPolicy(false).getUpdatePolicy(),
                            rr.getPolicy(true).isEnabled(),
                            rr.getPolicy(true).getUpdatePolicy(),
                            rr.getPolicy(false).getChecksumPolicy());
    
                } catch (Exception e) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java

                if (code == httpStatusCode) {
                    return true;
                }
            }
            return false;
        }
    
        protected boolean isNotModified(final ResponseData responseData) {
            if (notModifiedHttpCodes == null) {
                return false;
            }
            final int httpStatusCode = responseData.getHttpStatusCode();
            for (final int code : notModifiedHttpCodes) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            assertTrue(setFutureSetSuccess.get());
            assertTrue(setFutureCompletionSuccess.get());
          }
          // reset for next iteration
          setFutureSetSuccess.set(false);
          setFutureCompletionSuccess.set(false);
          cancellationSuccess.set(false);
          finalResults.clear();
        }
        executor.shutdown();
      }
    
      // Test to ensure that when calling setFuture with a done future only setFuture or cancel can
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CipherSuiteTest.kt

        val connectionSpec =
          ConnectionSpec.Builder(true)
            .tlsVersions(TlsVersion.TLS_1_0)
            .cipherSuites("TLS_A", "TLS_C", "TLS_E")
            .build()
        applyConnectionSpec(connectionSpec, socket, false)
        assertArrayEquals(arrayOf("TLS_A", "TLS_C"), socket.enabledCipherSuites)
      }
    
      @Test
      fun applyIntersectionRetainsSslPrefixes() {
        val socket = FakeSslSocket()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Result.java

         *
         * @param model
         * @param problems
         */
        public static <T> Result<T> success(T model, Iterable<? extends ModelProblem> problems) {
            assert !hasErrors(problems);
            return new Result<>(false, model, problems);
        }
    
        /**
         * Success with warnings
         *
         * @param model
         * @param results
         */
        public static <T> Result<T> success(T model, Result<?>... results) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top