Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 862 for Cast (0.65 sec)

  1. android/guava/src/com/google/common/collect/Tables.java

       * table to be a view, but it means that the function will be applied many times for bulk
       * operations like {@link Table#containsValue} and {@code Table.toString()}. For this to perform
       * well, {@code function} should be fast. To avoid lazy evaluation when the returned table doesn't
       * need to be a view, copy the returned table into a new table of your choosing.
       *
       * @since 10.0
       */
      public static <
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      for (const auto& type_and_idx : llvm::enumerate(func_type.getResults())) {
        size_t idx = type_and_idx.index();
        auto result_ty = mlir::cast<mlir::RankedTensorType>(type_and_idx.value());
    
        // If the result type isn't static, then the owner of the result may be a
        // cast op from a more specific bounded type to an unbounded dynamic type.
        // Use the bounded type to get the buffer size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

    import org.gradle.api.internal.coerce.StringToEnumTransformer;
    import org.gradle.api.internal.provider.support.LazyGroovySupport;
    import org.gradle.api.provider.HasConfigurableValue;
    import org.gradle.internal.Cast;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.reflect.JavaPropertyReflectionUtil;
    import org.gradle.internal.state.ModelObject;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

    import org.gradle.api.Action;
    import org.gradle.api.JavaVersion;
    import org.gradle.api.internal.file.temp.GradleUserHomeTemporaryFileProvider;
    import org.gradle.initialization.GradleUserHomeDirProvider;
    import org.gradle.internal.Cast;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.file.FileMetadataAccessor;
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.internal.nativeintegration.NativeCapabilities;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_plugin.go

    	}
    
    	return nil
    }
    
    func initializeCSINode(host volume.VolumeHost) error {
    	kvh, ok := host.(volume.KubeletVolumeHost)
    	if !ok {
    		klog.V(4).Info("Cast from VolumeHost to KubeletVolumeHost failed. Skipping CSINode initialization, not running on kubelet")
    		return nil
    	}
    	kubeClient := host.GetKubeClient()
    	if kubeClient == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      return absl::OkStatus();
    }
    
    Status ConvertAttribute(const mlir::TF::FuncAttr& attr, bool remove_ref_type,
                            AttrValue* value) {
      TF_RETURN_IF_ERROR(ConvertAttribute(
          mlir::cast<mlir::FlatSymbolRefAttr>(attr.getName()), value));
      TF_RETURN_IF_ERROR(ConvertAttributes(attr.getAttrs().getValue(),
                                           /*attrs_to_ignore=*/{}, remove_ref_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

       */
      static long load64(byte[] input, int offset) {
        // We don't want this in production code as this is the most critical part of the loop.
        assert input.length >= offset + 8;
        // Delegates to the fast (unsafe) version or the fallback.
        return byteArray.getLongLittleEndian(input, offset);
      }
    
      /**
       * Similar to load64, but allows offset + 8 > input.length, padding the result with zeroes. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

            def location = locations.find {
                locationType.isInstance(it)
            }
            assert location != null : "Expected a location of type $locationType, but found none."
            return locationType.cast(location)
        }
    
        @Override
        ReceivedAdditionalData getAdditionalData() {
           additionalData
        }
    
        @Override
        ReceivedException getException() {
            exception
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

        // Build a function to serve as the GELU decomposition in the
        // shlo composite op.
        auto root = op->getParentOfType<ModuleOp>();
        auto func = BuildGELUDecomposition(
            rhs_add.getType().cast<RankedTensorType>(), rewriter, root.getBody());
    
        SymbolTable table(root);
        (void)table.renameToUnique(func, {});
    
        rewriter.setInsertionPointAfter(output_mul);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/LittleEndianByteArray.java

       */
      static long load64(byte[] input, int offset) {
        // We don't want this in production code as this is the most critical part of the loop.
        assert input.length >= offset + 8;
        // Delegates to the fast (unsafe) version or the fallback.
        return byteArray.getLongLittleEndian(input, offset);
      }
    
      /**
       * Similar to load64, but allows offset + 8 > input.length, padding the result with zeroes. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top