Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,033 for STREAM (0.4 sec)

  1. 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)
  2. tensorflow/compiler/jit/xla_host_send_recv_device_context_test.cc

          new XlaHostSendDeviceContext(stream.get(), &gpu_dst, shape, done_event);
      TF_ASSERT_OK(device_context->CopyCPUTensorToDeviceSync(
          &origin_cpu_tensor, device_.get(), &device_tensor));
    
      // Copy the GPU tensor back to CPU to check that copy worked.
      TF_ASSERT_OK(stream->Memcpy(dest_cpu_tensor.data(), gpu_dst, gpu_dst.size()));
      TF_ASSERT_OK(stream->BlockHostUntilDone());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/PushObserver.kt

     * correlated by stream ID.
     *
     *  * [onRequest]
     *  * [onHeaders] (unless canceled)
     *  * [onData] (optional sequence of data frames)
     *
     * As a stream ID is scoped to a single HTTP/2 connection, implementations which target multiple
     * connections should expect repetition of stream IDs.
     *
     * Return true to request cancellation of a pushed stream.  Note that this does not guarantee
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/ldap/LdapUser.java

            return stream(getPermissions()).get(stream -> stream.filter(s -> s.startsWith(fessConfig.getRoleSearchRolePrefix()))
                    .map(s -> s.substring(1)).toArray(n -> new String[n]));
        }
    
        @Override
        public String[] getGroupNames() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. subprojects/core/src/test/groovy/org/gradle/util/internal/DisconnectableInputStreamTest.groovy

            def instr = new DisconnectableInputStream(stream("some text"), toActionExecuter(executorFactory))
    
            assertReads(instr, "some text")
    
            def nread = instr.read(new byte[20])
            assertThat(nread, equalTo(-1))
    
            instr.close()
        }
    
        @Test
        void buffersDataReadFromSourceInputStream() {
            def instr = new DisconnectableInputStream(stream("test1test2end"), toActionExecuter(executorFactory))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

     * Provides a way to encode structured data to a backing byte stream. Implementations may buffer outgoing encoded bytes prior
     * to writing to the backing byte stream.
     */
    public interface Encoder {
        /**
         * Returns an {@link OutputStream} that can be used to write raw bytes to the stream.
         */
        OutputStream getOutputStream();
    
        /**
         * Writes a raw byte value to the stream.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top