Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 231 for Extract (0.17 sec)

  1. android/guava/src/com/google/common/reflect/Types.java

      static Class<?> getArrayClass(Class<?> componentType) {
        // TODO(user): This is not the most efficient way to handle generic
        // arrays, but is there another way to extract the array class in a
        // non-hacky way (i.e. using String value class names- "[L...")?
        return Array.newInstance(componentType, 0).getClass();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    //
    // (An alternative would be to preempt in the signal handler itself.
    // This would let the OS save and restore the register state and the
    // runtime would only need to know how to extract potentially
    // pointer-containing registers from the signal context. However, this
    // would consume an M for every preempted G, and the scheduler itself
    // is not designed to run from a signal handler, as it tends to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      auto execute_arg_to_outer_args =
          AnnotateCompileOpAndGetExecuteArgToWhileArgsMapping(
              while_op, replicate, execute, compile_launch);
      if (execute_arg_to_outer_args.empty()) return false;
    
      // Extract the replicated devices.
      auto devices_attr = replicate.getDevices();
      if (!devices_attr) return false;
    
      auto device_map = devices_attr.value();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def convertIntAttrTo64Bit : NativeCodeCall<
        "$_builder.getI64IntegerAttr($0.cast<IntegerAttr>().getInt())">;
    
    // Extracts the single integer element from $_self.
    def ExtractSingleElementAsInteger : NativeCodeCall<
        "ExtractSingleElementAsInteger($_self.cast<ElementsAttr>())">;
    
    // Extracts the single int32 element from $_self.
    def ExtractSingleElementAsInt32 : NativeCodeCall<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

       */
      public static <E> ConcurrentHashMultiset<E> create() {
        // TODO(schmoe): provide a way to use this class with other (possibly arbitrary)
        // ConcurrentMap implementors. One possibility is to extract most of this class into
        // an AbstractConcurrentMapMultiset.
        return new ConcurrentHashMultiset<>(new ConcurrentHashMap<E, AtomicInteger>());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                        LOGGER.debug("Unable to initialize native-platform. Failure: {}", format(ex));
                        useNativeIntegrations = false;
                    } else if (ex.getMessage().equals("Could not extract native JNI library.")
                        && ex.getCause().getMessage().contains("native-platform.dll (The process cannot access the file because it is being used by another process)")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Throwables.java

       * chain:
       *
       * <pre>
       * Iterables.filter(Throwables.getCausalChain(e), IOException.class));
       * </pre>
       *
       * @param throwable the non-null {@code Throwable} to extract causes from
       * @return an unmodifiable list containing the cause chain starting with {@code throwable}
       * @throws IllegalArgumentException if there is a loop in the causal chain
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Throwables.java

       * chain:
       *
       * <pre>
       * Iterables.filter(Throwables.getCausalChain(e), IOException.class));
       * </pre>
       *
       * @param throwable the non-null {@code Throwable} to extract causes from
       * @return an unmodifiable list containing the cause chain starting with {@code throwable}
       * @throws IllegalArgumentException if there is a loop in the causal chain
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ----
    
    IMPORTANT: When writing unit tests, it's important to test boundary conditions and various forms of invalid input.
    Try to extract as much logic as possible from classes that use the Gradle API to make it testable as unit tests.
    It will result in maintainable code and faster test execution.
    
    [[sec:writing_tests_for_your_plugin]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. cmd/api-router.go

    		// PutObjectLegalHold
    		router.Methods(http.MethodPut).Path("/{object:.+}").
    			HandlerFunc(s3APIMiddleware(api.PutObjectLegalHoldHandler)).
    			Queries("legal-hold", "")
    
    		// PutObject with auto-extract support for zip
    		router.Methods(http.MethodPut).Path("/{object:.+}").
    			HeadersRegexp(xhttp.AmzSnowballExtract, "true").
    			HandlerFunc(s3APIMiddleware(api.PutObjectExtractHandler, traceHdrsS3HFlag))
    
    		// PutObject
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top