Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for ZIP (0.22 sec)

  1. cmd/admin-handlers.go

    		}
    	}
    
    	return loggerInfo, auditloggerInfo
    }
    
    func embedFileInZip(zipWriter *zip.Writer, name string, data []byte, fileMode os.FileMode) error {
    	// Send profiling data to zip as file
    	header, zerr := zip.FileInfoHeader(dummyFileInfo{
    		name:    name,
    		size:    int64(len(data)),
    		mode:    fileMode,
    		modTime: UTCNow(),
    		isDir:   false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            file("app/build/libs").assertHasDescendants("lib1.jar.txt", "lib2.zip.txt")
            file("app/build/libs/lib1.jar.txt").text == file("lib/build/lib1.jar").length() as String
    
            and:
            output.count("Transforming") == 2
            output.count("Transforming lib1.jar to lib1.jar.txt") == 1
            output.count("Transforming lib2.zip to lib2.zip.txt") == 1
    
            when:
            run "resolve"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                       rhs_shape_type.getShape().end());
          refined_shape = true;
        }
      } else if (rhs_shape_type.hasRank()) {
        for (auto shape_elts : llvm::enumerate(
                 llvm::zip(lhs_shape_type.getShape(), rhs_shape_type.getShape()))) {
          if (ShapedType::isDynamic(std::get<0>(shape_elts.value())) &&
              !ShapedType::isDynamic(std::get<1>(shape_elts.value()))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      //
      // The last two dimensions are non-batch dimensions that don't need to
      // participate in batch dimension compatibility check.
      if (std::is_same<OpT, BatchMatMulOp>()) {
        for (const auto& dim_pairs : llvm::zip(x_batches, y_batches)) {
          int64_t x_dim = std::get<0>(dim_pairs);
          int64_t y_dim = std::get<1>(dim_pairs);
          if (!ShapedType::isDynamic(x_dim) && !ShapedType::isDynamic(y_dim) &&
              x_dim != y_dim) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	    Error    string // error loading module
    //	    Info     string // absolute path to cached .info file
    //	    GoMod    string // absolute path to cached .mod file
    //	    Zip      string // absolute path to cached .zip file
    //	    Dir      string // absolute path to cached source root directory
    //	    Sum      string // checksum for path, version (as in go.sum)
    //	    GoModSum string // checksum for go.mod (as in go.sum)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        if (!dynamic_inputs.empty()) {
          auto dynamic_shape_n = rewriter.create<TF::ShapeNOp>(
              op.getLoc(), result_types, dynamic_inputs);
          for (auto index_result :
               llvm::zip(dynamic_indices, dynamic_shape_n.getResults())) {
            results[std::get<0>(index_result)] = std::get<1>(index_result);
          }
        }
    
        rewriter.replaceOp(op, results);
        return success();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        const int num_results = input_unpack_op.getNumResults();
        if (total_pack_inputs != num_results) return failure();
        for (auto input_output :
             llvm::zip(pack_op.getOperands(), input_unpack_op.getResults())) {
          Value pack_input = std::get<0>(input_output);
          Value unpack_output = std::get<1>(input_output);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          return failure();
        }
        const SmallVector<int64_t, 3> match_perm = {1, 2, 0};
        for (const auto &[perm_index, match_perm_index] :
             llvm::zip(transpose_perm.getValues<APInt>(), match_perm)) {
          if (perm_index != match_perm_index) {
            return failure();
          }
        }
    
        auto reshape_op = op.getInput().getDefiningOp<ReshapeOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

    import java.time.Duration
    import java.util.Arrays
    import java.util.EnumSet
    import java.util.Locale
    import java.util.concurrent.TimeUnit
    import java.util.concurrent.atomic.AtomicReference
    import java.util.zip.GZIPInputStream
    import javax.net.SocketFactory
    import javax.net.ssl.SSLException
    import javax.net.ssl.SSLHandshakeException
    import javax.net.ssl.SSLProtocolException
    import javax.net.ssl.TrustManager
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      llvm::SmallVector<int64_t, 8> pad_output_shape;
    
      bool has_negative_padding_amount = false;
      llvm::SmallVector<int64_t, 8> slice_begins;
      llvm::SmallVector<int64_t, 8> slice_sizes;
    
      for (auto p : llvm::zip(pad_op.getOperand().getType().getShape(),
                              pad_op.getEdgePaddingLow().getValues<APInt>(),
                              pad_op.getEdgePaddingHigh().getValues<APInt>())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top