Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 194 for unpipe (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorUtils.java

            }
    
            return pomArtifact;
        }
    
        /**
         * Creates POM artifact out of passed in artifact by dropping classifier (if exists) and rewriting extension to
         * "pom". Unconditionally, unlike {@link #toPomArtifact(Artifact)} that does this only for artifacts without
         * classifiers.
         *
         * @since 4.0.0
         */
        public static Artifact toPomArtifactUnconditionally(Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/OpenJdk6MapTests.java

            getContainsEntryWithIncomparableValueMethod());
      }
    
      @Override
      protected Collection<Method> suppressForConcurrentHashMap() {
        /*
         * The entrySet() of ConcurrentHashMap, unlike that of other Map
         * implementations, supports add() under JDK8. This seems problematic, but I
         * didn't see that discussed in the review, which included many other
         * changes: http://goo.gl/okTTdr
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/base/public/tensorhandle.h

    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // An opaque representation of a tensor computed/managed by the Tensorflow
    // runtime (tensorflow:cc::Runtime). Unlike a tensor, a Tensorhandle may refer
    // to tensors placed in memory of different devices or remote address spaces.
    // Note that tensorflow::cc::Runtime MUST outlive all TensorHandles created
    // from it.
    class TensorHandle {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/CleanArchiveIntegrationTest.groovy

                }
                zipTree(file("hello.zip")).files
            """
    
            expect:
            succeeds "clean"
        }
    
        def "clean after unzipping during configuration, then unzip again in a different task"() {
            buildFile << """
                plugins {
                    id 'lifecycle-base'
                }
                System.out.println("Files in the archive: " + zipTree(file("hello.zip")).files)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    typedef llvm::function_ref<llvm::SmallVector<Operation *, 4> const &(
        Operation *, bool incoming)>
        ExtraDependenciesFunction;
    
    // Convenience function if there are no extra dependencies to declare.
    // (Unlike nullptr, this also works inside the ternary operator)
    extern ExtraDependenciesFunction no_extra_dependencies;
    
    // Sort a block topologically, so that for all ops, all operands are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/main5.c

    			break;
    		}
    		case 3: {
    			if (verbose) {
    				printf("attempting SIGPIPE\n");
    			}
    
    			int fd[2];
    			if (pipe(fd) != 0) {
    				printf("pipe(2) failed\n");
    				return 0;
    			}
    			// Close the reading end.
    			close(fd[0]);
    			// Expect that write(2) fails (EPIPE)
    			if (write(fd[1], "some data", 9) != -1) {
    				printf("write(2) unexpectedly succeeded\n");
    				return 0;
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionCatalog.java

    import org.gradle.api.NonNullApi;
    import org.gradle.api.provider.Provider;
    import org.gradle.plugin.use.PluginDependency;
    
    import java.util.List;
    import java.util.Optional;
    
    /**
     * Provides access to a version catalog. Unlike generated extension
     * classes for catalogs, there is no guarantee that the requested
     * aliases exist, so you must check existence on the returned optional
     * values.
     *
     * @since 7.0
     */
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ListenableFutureTask.java

    import java.util.concurrent.TimeoutException;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link FutureTask} that also implements the {@link ListenableFuture} interface. Unlike {@code
     * FutureTask}, {@code ListenableFutureTask} does not provide an overrideable {@link
     * FutureTask#done() done()} method. For similar functionality, call {@link #addListener}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/examples/stateful/stateful.go

    // collected, and thereby "unallocating" the reserved resources.
    func (mp *MultipointExample) Unreserve(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) {
    	// Unlike Reserve, the Unreserve method may be called concurrently since
    	// there is no guarantee that there will only one unreserve operation at any
    	// given point in time (for example, during the binding cycle).
    	mp.mu.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/Dockerfile

    # This corresponds to boringssl.googlesource.com/boringssl tag fips-20210429.
    ENV ClangV=12
    RUN apt-get update && \
            apt-get install --no-install-recommends -y cmake xz-utils wget unzip ca-certificates clang-$ClangV python
    
    # Download, validate, unpack, build, and install Ninja.
    ENV NinjaV=1.10.2
    ENV NinjaH=ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed
    RUN \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top