Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,325 for strtab (0.13 sec)

  1. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

     */
    package org.codelibs.fess.app.service;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.io.IOException;
    import java.io.Reader;
    import java.io.Writer;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.stream.Collectors;
    
    import javax.annotation.Resource;
    
    import org.apache.logging.log4j.LogManager;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java

        @Override
        public int hashCode() {
            return Objects.hash(modelId, location, inputs);
        }
    
        Stream<InputSource> sources() {
            return inputs != null ? inputs.stream() : Stream.of(this);
        }
    
        @Override
        public String toString() {
            if (inputs != null) {
                return inputs.stream().map(InputSource::toString).collect(Collectors.joining(", ", "merged[", "]"));
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                                }
                            });
                            final List<String> newGroupList = stream(user.getGroupNames()).get(stream -> stream.collect(Collectors.toList()));
                            stream(user.getGroupNames()).of(stream -> stream.forEach(name -> {
                                if (oldGroupList.contains(name)) {
                                    oldGroupList.remove(name);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskProperties.java

            return forkOptions;
        }
    
        @Override
        public Stream<CandidateClassFile> getCandidateClassFiles() {
            return candidateClassFiles.stream();
        }
    
        @Override
        public Stream<InputFileProperty> getInputFileProperties() {
            return inputFileProperties.stream();
        }
    
        @Override
        public Stream<OutputFileProperty> getOutputFileProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (1)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshot.java

    package org.gradle.internal.snapshot;
    
    import java.util.stream.Stream;
    
    /**
     * A snapshot of a part of the file system.
     */
    public interface FileSystemSnapshot {
        /**
         * An empty snapshot.
         */
        FileSystemSnapshot EMPTY = new FileSystemSnapshot() {
            @Override
            public Stream<FileSystemLocationSnapshot> roots() {
                return Stream.empty();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.relatedquery;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import javax.annotation.Resource;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/KotlinCompatibilityTest.java

    import static com.tngtech.archunit.lang.conditions.ArchPredicates.are;
    import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.classes;
    import static java.util.stream.Collectors.groupingBy;
    import static java.util.stream.Collectors.partitioningBy;
    import static java.util.stream.Collectors.toSet;
    import static org.gradle.architecture.test.ArchUnitFixture.freeze;
    import static org.gradle.architecture.test.ArchUnitFixture.gradlePublicApi;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskForkOptions.java

        public int getJavaMajorVersion() {
            return javaMajorVersion;
        }
    
        @Override
        public Stream<File> getClasspath() {
            return StreamSupport.stream(classpath.spliterator(), false);
        }
    
        @Override
        public Stream<File> getModulePath() {
            return StreamSupport.stream(modulePath.spliterator(), false);
        }
    
        @Override
        public List<String> getJvmArgs() {
            return jvmArgs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor_test_util.cc

                      TF_Status* const status) {
      *stream = nullptr;
    }
    void DestroyStream(const SP_Device* const device, SP_Stream stream) {}
    void CreateStreamDependency(const SP_Device* const device, SP_Stream dependent,
                                SP_Stream other, TF_Status* const status) {}
    void GetStreamStatus(const SP_Device* const device, SP_Stream stream,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 21 20:09:00 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection_test.go

    	}
    
    	streamChan := make(chan httpstream.Stream)
    	replySentChan := make(chan (<-chan struct{}))
    	spdyConn, err := NewServerConnection(conn, func(stream httpstream.Stream, replySent <-chan struct{}) error {
    		streamChan <- stream
    		replySentChan <- replySent
    		return nil
    	})
    	if err != nil {
    		t.Errorf("server: error creating spdy connection: %v", err)
    		return
    	}
    
    	stream := <-streamChan
    	replySent := <-replySentChan
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 11:58:57 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top