Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for publicId (0.26 sec)

  1. android/guava/src/com/google/common/collect/TableCollectors.java

          this.column = checkNotNull(column, "column");
          this.value = checkNotNull(value, "value");
        }
    
        @Override
        public R getRowKey() {
          return row;
        }
    
        @Override
        public C getColumnKey() {
          return column;
        }
    
        @Override
        public V getValue() {
          return value;
        }
    
        void merge(V value, BinaryOperator<V> mergeFunction) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

     * rule changes, or that its configuration changes, then we will have a cache miss.
     *
     * @param <KEY> the primary key for the cache. This is an explicit input, whereas the rule is an implicit one.
     * @param <DETAILS> the publicly exposed type that a user would see. Typically component metadata details.
     * @param <RESULT> the result of executing the rule, which may be the same as the DETAILS, but will often be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. docs/contribute/code_of_conduct.md

       witnesses, please include them as well.
     * Your account of what occurred, and if you believe the incident is ongoing. If there is a publicly
       available record (e.g. a mailing list archive or a public IRC logger), please include a link.
     * Any additional information that may be helpful.
    
    After filing a report, a representative from the Square Code of Conduct committee will contact you
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/api/logging-interceptor.api

    	public fun proxySelectStart (Lokhttp3/Call;Lokhttp3/HttpUrl;)V
    	public fun requestBodyEnd (Lokhttp3/Call;J)V
    	public fun requestBodyStart (Lokhttp3/Call;)V
    	public fun requestFailed (Lokhttp3/Call;Ljava/io/IOException;)V
    	public fun requestHeadersEnd (Lokhttp3/Call;Lokhttp3/Request;)V
    	public fun requestHeadersStart (Lokhttp3/Call;)V
    	public fun responseBodyEnd (Lokhttp3/Call;J)V
    	public fun responseBodyStart (Lokhttp3/Call;)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jStdoutLogger.java

        public void info(String format, Object arg) {}
    
        public void info(String format, Object arg1, Object arg2) {}
    
        public void info(String format, Object... arguments) {}
    
        public void info(String msg, Throwable t) {}
    
        public boolean isInfoEnabled(Marker marker) {
            return false;
        }
    
        public void info(Marker marker, String msg) {}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

            return super.getProject();
        }
    
        @Override
        public String getName() {
            return super.getName();
        }
    
        @Override
        public List<Action<? super Task>> getActions() {
            return super.getActions();
        }
    
        @Override
        public void setActions(List<Action<? super Task>> replacements) {
            super.setActions(replacements);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

    import static org.junit.Assume.assumeTrue
    
    public class ATestClass {
        @Test
        public void ok() {
        }
    }
    
    public class BTestClass {
        @Test
        public void ok() {
        }
    
        @Test
        public void coolName() {
        }
    }
    
    public class ATestClassWithIgnoredMethod {
        @Test
        @Ignore
        public void ignored() {
        }
    }
    
    public class ATestClassWithFailedTestAssumption {
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. okhttp-tls/api/okhttp-tls.api

    public final class okhttp3/tls/Certificates {
    	public static final fun certificatePem (Ljava/security/cert/X509Certificate;)Ljava/lang/String;
    	public static final fun decodeCertificatePem (Ljava/lang/String;)Ljava/security/cert/X509Certificate;
    }
    
    public final class okhttp3/tls/HandshakeCertificates {
    	public final fun -deprecated_keyManager ()Ljavax/net/ssl/X509KeyManager;
    	public final fun -deprecated_trustManager ()Ljavax/net/ssl/X509TrustManager;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 26 19:17:33 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/RestrictiveCodeVisitor.java

            );
        }
    
        @Override
        public void visitBlockStatement(BlockStatement statement) {
            restrict(statement);
        }
    
        @Override
        public void visitForLoop(ForStatement forLoop) {
            restrict(forLoop);
        }
    
        @Override
        public void visitWhileLoop(WhileStatement loop) {
            restrict(loop);
        }
    
        @Override
        public void visitDoWhileLoop(DoWhileStatement loop) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 10)
        public String userFavorite;
    
        @Size(max = 10)
        public String webApiJson;
    
        @Size(max = 10000)
        public String appValue;
    
        @Size(max = 1000)
        public String defaultLabelValue;
    
        @Size(max = 1000)
        public String defaultSortValue;
    
        @Size(max = 10000)
        public String virtualHostValue;
    
        @Size(max = 10)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top