Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for void (0.24 sec)

  1. pom.xml

    							<method>java.lang.String getGuestPassword()</method>
    						</difference>
    						<difference>
    							<className>jcifs/SmbResource</className>
    							<differenceType>7012</differenceType>
    							<method>void setFileTimes(long, long, long)</method>
    						</difference>
    					</ignored>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    XML
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  2. maven-compat/src/main/mdo/paramdoc.mdo

                        expressionsBySyntax.put( expr.getSyntax(), expr );
                    }
                }
            }
    
            return expressionsBySyntax;
        }
    
        public void flushExpressionsBySyntax()
        {
            expressionsBySyntax = null;
        }
    ]]></code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <version>1.0.0</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Aug 21 15:04:07 GMT 2009
    - 5.4K bytes
    - Viewed (0)
  3. futures/listenablefuture1/pom.xml

        "version" that omits the class to avoid conflicts with the copy in Guava
        itself. The idea is:
    
        - If users want only ListenableFuture, they depend on listenablefuture-1.0.
    
        - If users want all of Guava, they depend on guava, which, as of Guava
        27.0, depends on
        listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 12 21:42:09 GMT 2018
    - 2.2K bytes
    - Viewed (0)
  4. guava-gwt/pom.xml

              <sourcepath>doesnotexist</sourcepath>
              <!-- Note that we do need to build Javadoc for *some* class. Otherwise, we get an empty Javadoc jar, which the Sonatype repository manager rejects. To avoid that, we've introduced a dummy class. But we made it package-private so that no one can depend on it. That in turn forced us to configure Javadoc to show package-private APIs. -->
              <show>package</show>
            </configuration>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

        }
    
        public void setActive(boolean active) {
            setActiveString(String.valueOf(active));
        }
    
        public int getPort() {
            return (getPortString() != null) ? Integer.parseInt(getPortString()) : 8080;
        }
    
        public void setPort(int port) {
            setPortString(String.valueOf(port));
        }
              </code>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  6. api/maven-api-metadata/src/main/mdo/metadata.mdo

          </fields>
          <codeSegments>
            <codeSegment>
              <version>1.0.0/1.1.0</version>
              <code><![CDATA[
        public void updateTimestamp()
        {
            setLastUpdatedTimestamp( new java.util.Date() );
        }
    
        public void setLastUpdatedTimestamp( java.util.Date date )
        {
            java.util.TimeZone timezone = java.util.TimeZone.getTimeZone( "UTC" );
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

        public java.nio.file.Path getPomPath() {
            return (getDelegate().getPomFile() != null) ? getDelegate().getPomFile() : null;
        }
    
        public void setPomPath(java.nio.file.Path pomPath) {
            update( getDelegate().withPomFile(pomPath));
        }
    
        public void setModelEncoding(String modelEncoding) {
            update(getDelegate().with().modelEncoding(modelEncoding).build());
        }
    
        /**
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/empty-distMng-repo-url/pom.xml

      <artifactId>commons-parent</artifactId>
      <packaging>pom</packaging>
      <version>11</version>
    
      <distributionManagement>
        <repository>
          <id>dummy</id>
          <name>Dummy to avoid accidental deploys</name>
          <url />
        </repository>
      </distributionManagement>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 373 bytes
    - Viewed (0)
  9. android/guava/pom.xml

          <version>1.0.2</version>
        </dependency>
        <dependency>
          <groupId>com.google.guava</groupId>
          <artifactId>listenablefuture</artifactId>
          <version>9999.0-empty-to-avoid-conflict-with-guava</version>
        </dependency>
        <dependency>
          <groupId>com.google.code.findbugs</groupId>
          <artifactId>jsr305</artifactId>
        </dependency>
        <dependency>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 11 16:37:45 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  10. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

            public static final String GLOBAL_LEVEL = "global-level";
    
            private String sourceLevel = USER_LEVEL;
            private boolean sourceLevelSet = false;
    
            public void setSourceLevel(String sourceLevel) {
                if (sourceLevelSet) {
                    throw new IllegalStateException("Cannot reset sourceLevel attribute; it is already set to: " + sourceLevel);
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
Back to top