Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 972 for Tang (0.04 sec)

  1. maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilder.java

    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.lang.reflect.Method;
    import java.nio.file.Path;
    import java.util.List;
    import java.util.stream.Collectors;
    
    import org.apache.maven.api.Session;
    import org.apache.maven.api.services.BuilderProblem;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/ClassIterator.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.lang;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgument;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.util.Iterator;
    import java.util.NoSuchElementException;
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/AbstractMultiTestInterceptor.java

    import org.spockframework.runtime.model.IterationInfo;
    import org.spockframework.runtime.model.NameProvider;
    import org.spockframework.runtime.model.SpecInfo;
    
    import java.lang.annotation.Annotation;
    import java.lang.reflect.Method;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * A base class for those test interceptors which execute a test multiple times.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/Scope.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.di;
    
    import java.lang.annotation.Annotation;
    import java.util.function.Supplier;
    
    public interface Scope {
    
        <T> Supplier<T> scope(Key<T> key, Annotation scope, Supplier<T> unscoped);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1022 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import java.lang.reflect.Field;
    
    public class BeanFieldSetAccessibleFailureException extends ClRuntimeException {
        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Fri Mar 08 13:23:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import java.lang.reflect.Method;
    
    public class BeanMethodSetAccessibleFailureException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Fri Mar 08 13:23:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestClassRunInfo.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.testing;
    
    import org.apache.commons.lang.StringUtils;
    
    public class DefaultTestClassRunInfo implements TestClassRunInfo {
        private String testClassName;
    
        public DefaultTestClassRunInfo(String testClassName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.helper;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    
    /**
     * @author shinsuke
     *
     */
    public class ContentLengthHelper {
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/DocMapTest.java

            Map<String, Object> value = new LinkedHashMap<>();
            DocMap docMap = new DocMap(value);
            assertTrue(docMap.isEmpty());
            value.clear();
    
            List<String> keys = Arrays.asList("test_2", "test_0", "lang", "test_1");
            value.put(keys.get(0), true);
            value.put(keys.get(1), 1000);
            value.put(keys.get(2), "ja");
            value.put(keys.get(3), "str");
            docMap = new DocMap(value);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/gradle-cli-main/src/main/java/org/gradle/internal/jvm/GradleVersionNumberLoader.java

     * limitations under the License.
     */
    
    package org.gradle.internal.jvm;
    
    import java.io.InputStream;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.Properties;
    
    import static java.lang.String.format;
    
    public class GradleVersionNumberLoader {
    
        private static final String RESOURCE_NAME = "org/gradle/build-receipt.properties";
        private static final String VERSION_NUMBER_PROPERTY = "versionNumber";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top