Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,327 for Kull (0.2 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        protected String getProjectsDirectory() {
            return "src/test/projects/plugin-manager";
        }
    
        @Test
        void testPluginLoading() throws Exception {
            MavenSession session = createMavenSession(null);
            Plugin plugin = new Plugin();
            plugin.setGroupId("org.apache.maven.its.plugins");
            plugin.setArtifactId("maven-it-plugin");
            plugin.setVersion("0.1");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Verify.java

       * place....)
       */
    
      /**
       * Ensures that {@code reference} is non-null, throwing a {@code VerifyException} with a default
       * message otherwise.
       *
       * @return {@code reference}, guaranteed to be non-null, for convenience
       * @throws VerifyException if {@code reference} is {@code null}
       * @see Preconditions#checkNotNull Preconditions.checkNotNull()
       */
      @CanIgnoreReturnValue
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 18.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

            wordCount, byteCount;
        boolean useUnicode, received, extendedSecurity;
        long responseTimeout = 1;
        int signSeq;
        boolean verifyFailed;
        NtlmPasswordAuthentication auth = null;
        String path;
        SigningDigest digest = null;
        ServerMessageBlock response;
    
        ServerMessageBlock() {
            flags = (byte)( FLAGS_PATH_NAMES_CASELESS | FLAGS_PATH_NAMES_CANONICALIZED );
            pid = PID;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  4. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.codehaus.plexus.util.xml.Xpp3DomBuilder</exportedPackage>
        <exportedPackage>org.codehaus.plexus.util.xml.pull.XmlPullParser</exportedPackage>
        <exportedPackage>org.codehaus.plexus.util.xml.pull.XmlPullParserException</exportedPackage>
        <exportedPackage>org.codehaus.plexus.util.xml.pull.XmlSerializer</exportedPackage>
    
        <!-- plexus-container, plexus-component-annotations -->
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.2.md

    * GCE provider: Create TargetPool with 200 instances, then update with rest ([#27865](https://github.com/kubernetes/kubernetes/pull/27865), [@zmerlynn](https://github.com/zmerlynn))
    * GCE provider: Limit Filter calls to regexps rather than large blobs ([#27741](https://github.com/kubernetes/kubernetes/pull/27741), [@zmerlynn](https://github.com/zmerlynn))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

         * Reset the {@code activeProxy} field to {@code null}.
         */
        public void flushActiveProxy() {
            this.activeProxy = null;
        }
    
        /**
         * @return the first active proxy
         */
        public synchronized Proxy getActiveProxy() {
            if (activeProxy == null) {
                java.util.List<Proxy> proxies = getProxies();
                if (proxies != null && !proxies.isEmpty()) {
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/HostAndPort.java

     *   <li>2001:db8::1 - Use {@link #requireBracketsForIPv6()} to prohibit this
     * </ul>
     *
     * <p>Note that this is not an exhaustive list, because these methods are only concerned with
     * brackets, colons, and port numbers. Full validation of the host field (if desired) is the
     * caller's responsibility.
     *
     * @author Paul Marks
     * @since 10.0
     */
    @Immutable
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Aug 22 20:55:57 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableBiMap.java

               */
              if (valueComparator != null) {
                if (entriesUsed) {
                  entries = Arrays.copyOf(entries, size);
                }
                Arrays.sort(
                    (Entry<K, V>[]) entries, // Entries up to size are not null
                    0,
                    size,
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Oct 31 16:03:42 GMT 2023
    - 22.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

      }
    
      /**
       * Returns the {@linkplain #isPublicSuffix() public suffix} portion of the domain name, or {@code
       * null} if no public suffix is present.
       *
       * @since 6.0
       */
      @CheckForNull
      public InternetDomainName publicSuffix() {
        return hasPublicSuffix() ? ancestor(publicSuffixIndex()) : null;
      }
    
      /**
       * Indicates whether this domain name ends in a {@linkplain #isPublicSuffix() public suffix},
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Ordering.java

       *
       * <p>Example:
       *
       * <pre>{@code
       * Ordering.allEqual().nullsLast().sortedCopy(
       *     asList(t, null, e, s, null, t, null))
       * }</pre>
       *
       * <p>Assuming {@code t}, {@code e} and {@code s} are non-null, this returns {@code [t, e, s, t,
       * null, null, null]} regardless of the true comparison order of those three values (which might
       * not even implement {@link Comparable} at all).
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 39.4K bytes
    - Viewed (0)
Back to top