Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2541 - 2550 of 3,972 for atrule (0.04 sec)

  1. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

              new ClassValue<Boolean>() {
                @Override
                protected Boolean computeValue(Class<?> type) {
                  checkExceptionClassValidity(type.asSubclass(Exception.class));
                  return true;
                }
              };
    
          @Override
          public void validateClass(Class<? extends Exception> exceptionClass) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/KerberosTest.java

            Kerb5Authenticator auth = new Kerb5Authenticator(s, getTestUserDomainRequired(), getTestUser(), getTestUserPassword());
            auth.setForceFallback(true);
            CIFSContext ctx = getContext().withCredentials(auth);
            try ( SmbResource f = new SmbFile(getTestShareURL(), ctx) ) {
                f.exists();
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

            ArtifactRepository repo = createStringRepo();
    
            assertThrows(ResourceDoesNotExistException.class, () -> wagonManager.getArtifact(artifact, repo, null, true));
    
            assertFalse(artifact.getFile().exists());
        }
    
        @Test
        void testGetRemoteJar()
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //
      // This field is not supported when watch is true. Clients may start a watch from the last
      // resourceVersion value returned by the server and not miss any modifications.
      optional string continue = 8;
    
      // `sendInitialEvents=true` may be set together with `watch=true`.
      // In that case, the watch stream will begin with synthetic events to
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java

                public String getUserId() {
                    return Constants.EMPTY_USER_ID;
                }
    
                @Override
                public boolean hasRoles(final String[] acceptedRoles) {
                    return true;
                }
    
                @Override
                public String[] getRoles() {
                    return StringUtil.EMPTY_STRINGS;
                }
    
                @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_details.jsp

                                <div class="card-body">
                                        <%-- Message --%>
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-info">${msg}</div>
                                        </la:info>
                                        <la:errors/>
                                    </div>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery_details.jsp

                                <div class="card-body">
                                        <%-- Message --%>
                                    <div>
                                        <la:info id="msg" message="true">
                                            <div class="alert alert-info">${msg}</div>
                                        </la:info>
                                        <la:errors/>
                                    </div>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/user/admin_user.jsp

                            </div>
                            <div class="card-body">
                                <%-- Message --%>
                                <div>
                                    <la:info id="msg" message="true">
                                        <div class="alert alert-info">${msg}</div>
                                    </la:info>
                                    <la:errors/>
                                </div>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/ListRetainAllTester.java

        E[] array = createSamplesArray();
        array[1] = e0();
        collection = getSubjectGenerator().create(array);
        assertTrue(
            "containsDuplicates.retainAll(subset) should return true",
            collection.retainAll(MinimalCollection.of(e2())));
        expectContents(e2());
      }
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      @CollectionSize.Require(SEVERAL)
      public void testRetainAll_countIgnored() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/BouncyCastlePlatform.kt

          try {
            // Trigger an early exception over a fatal error, prefer a RuntimeException over Error.
            Class.forName("org.bouncycastle.jsse.provider.BouncyCastleJsseProvider", false, javaClass.classLoader)
    
            true
          } catch (_: ClassNotFoundException) {
            false
          }
    
        fun buildIfSupported(): BouncyCastlePlatform? = if (isSupported) BouncyCastlePlatform() else null
      }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top