Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for Unused (0.26 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // We'd like for all the following to compile.
        ListenableFuture<String> unused;
    
        // Compiles:
        unused = whenAllComplete(futureA, futureB).call(combiner, directExecutor());
    
        // Does not compile:
        // unused = whenAllComplete(futures).call(combiner);
    
        // Workaround for the above:
        unused = whenAllComplete(asList(futures)).call(combiner, directExecutor());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        // We'd like for all the following to compile.
        ListenableFuture<String> unused;
    
        // Compiles:
        unused = whenAllComplete(futureA, futureB).call(combiner, directExecutor());
    
        // Does not compile:
        // unused = whenAllComplete(futures).call(combiner);
    
        // Workaround for the above:
        unused = whenAllComplete(asList(futures)).call(combiner, directExecutor());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def RemoveUnusedWhileResultsPass : Pass<"tf-remove-unused-while-results", "mlir::func::FuncOp"> {
      let summary = "Removes unused results from tf.WhileRegion ops";
       let description = [{
          Removes unused results from `tf.WhileRegion` ops along with the defining
          ops in the body, if it is safe to do so.
          Currently, the pass detects results with following properties:
          - the result is unused outside of the `tf.WhileRegion` op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

        // Used by generated code, see ^
        @SuppressWarnings("unused")
        public static ServiceLookup getServicesForNext() {
            return SERVICES_FOR_NEXT_OBJECT.get().services;
        }
    
        private static final String GET_FACTORY_FOR_NEXT_METHOD_NAME = "getFactoryForNext";
    
        // Used by generated code, see ^
        @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // Verify that the result stays uchanged
      // CHECK: return %arg0 : tensor<*xf32>
      func.return %0#0 : tensor<*xf32>
    }
    
    // Unused value flowing through the while (operand 2 and 3, is unused in the
    // while and the corresponding result is unused as well). Canonicalization will
    // eliminate them.
    // CHECK-LABEL: testWhileRegionUnusedValue
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    // Prog.Type
    type ProgType int
    
    const (
    	PT_NULL    ProgType = 0 /* Unused entry. */
    	PT_LOAD    ProgType = 1 /* Loadable segment. */
    	PT_DYNAMIC ProgType = 2 /* Dynamic linking information segment. */
    	PT_INTERP  ProgType = 3 /* Pathname of interpreter. */
    	PT_NOTE    ProgType = 4 /* Auxiliary information. */
    	PT_SHLIB   ProgType = 5 /* Reserved (not used). */
    	PT_PHDR    ProgType = 6 /* Location of program header itself. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (PruneForReverseReachability(graph_.get(), prune_start)) {
            VLOG(1) << "Pruned unused nodes in graphdef";
          } else {
            VLOG(1) << "No unused nodes in graphdef to prune";
          }
        } else {
          VLOG(1) << "No output nodes specified, skipping pruning";
        }
      } else {
        VLOG(1) << "Pruning unused nodes in graphdef is disabled";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      @Flaky
      @Test
      fun connectViaHttpsToUntrustedServer() {
        // Flaky https://github.com/square/okhttp/issues/5222
        server.useHttps(handshakeCertificates.sslSocketFactory())
        server.enqueue(MockResponse()) // unused
        assertFailsWith<IOException> {
          getResponse(newRequest("/foo"))
        }.also { expected ->
          when (expected) {
            is SSLHandshakeException -> {
              // Allow conscrypt to fail in different ways
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    //  - Floating-point types live in the low natural slot of an sse2 register.
    //    Unused portions are junk.
    //  - We do not use AH,BH,CH,DH registers.
    //  - When doing sub-register operations, we try to write the whole
    //    destination register to avoid a partial-register write.
    //  - Unused portions of AuxInt (or the Val portion of ValAndOff) are
    //    filled by sign-extending the used portion.  Users of AuxInt which interpret
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. src/cmd/go/alldocs.go

    //
    // # Add missing and remove unused modules
    //
    // Usage:
    //
    //	go mod tidy [-e] [-v] [-x] [-diff] [-go=version] [-compat=version]
    //
    // Tidy makes sure go.mod matches the source code in the module.
    // It adds any missing modules necessary to build the current module's
    // packages and dependencies, and it removes unused modules that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top