Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,515 for strips (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/strip_noinline_attribute.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // This tranformation pass strips any "_noinline" attributes from the module.
    struct StripNoinlineAttributePass
        : public impl::StripNoinlineAttributePassBase<StripNoinlineAttributePass> {
     public:
      // void runOnOperation() override;
      void runOnOperation() override {
        // Strip the "tf._noinline" attribute from top-level functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. okhttp-brotli/src/main/kotlin/okhttp3/brotli/BrotliInterceptor.kt

    import okhttp3.Interceptor
    import okhttp3.Response
    import okhttp3.brotli.internal.uncompress
    
    /**
     * Transparent Brotli response support.
     *
     * Adds Accept-Encoding: br to request and checks (and strips) for Content-Encoding: br in
     * responses.  n.b. this replaces the transparent gzip compression in BridgeInterceptor.
     */
    object BrotliInterceptor : Interceptor {
      override fun intercept(chain: Interceptor.Chain): Response {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/parse_text_proto.h

    // the prefix doesn't exist.
    Status ConsumePrefix(absl::string_view str, absl::string_view prefix,
                         absl::string_view* output);
    
    // Strips `prefix_to_strip` from `text_proto`, parses, and returns the parsed
    // proto.
    Status ParseTextProto(absl::string_view text_proto,
                          absl::string_view prefix_to_strip,
                          protobuf::Message* parsed_proto);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 06 09:43:41 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.h

    //
    // In detail, this function performs the following:
    // * Replaces "tf_saved_model.bound_input" attributes to
    //   "tf_saved_model.index_path", if the bound input is attached to the
    //   `tf_saved_model::AssetOp`.
    // * Strips the "assets/" prefix of the filename when setting it to
    //   `AssetFileDef`.
    FailureOr<SmallVector<tensorflow::AssetFileDef>> ConvertAssetArgs(
        ModuleOp module_op);
    
    }  // namespace mlir::quant
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 01:45:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

                }
    
                task stripSymbolsDebug(type: StripSymbols) { strip ->
                    project.application.binaries.get { !it.optimized }.configure {
                        def linkDebug = linkTask.get()
                        strip.toolChain = linkDebug.toolChain
                        strip.targetPlatform = linkDebug.targetPlatform
                        strip.binaryFile.set linkDebug.linkedFile
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/security/src/test/groovy/org/gradle/security/internal/SecuritySupportSpec.groovy

    import spock.lang.Issue
    import spock.lang.Specification
    
    class SecuritySupportSpec extends Specification {
        @Rule
        TestNameTestDirectoryProvider tempDir = new TestNameTestDirectoryProvider(getClass())
    
        def "strips data from saved keys on read"() {
            given:
            def keyringFile = new File(this.class.getResource("/keyrings/valid-with-extra-metadata.keys").getFile())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-MediaTypeCommon.kt

            token == null -> {
              // Value is "double-quoted". That's valid and our regex group already strips the quotes.
              parameter.groups[3]!!.value
            }
            token.startsWith("'") && token.endsWith("'") && token.length > 2 -> {
              // If the token is 'single-quoted' it's invalid! But we're lenient and strip the quotes.
              token.substring(1, token.length - 1)
            }
            else -> token
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/stripmeta.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    type stripMetaManager struct {
    	fieldManager Manager
    
    	// stripSet is the list of fields that should never be part of a mangedFields.
    	stripSet *fieldpath.Set
    }
    
    var _ Manager = &stripMetaManager{}
    
    // NewStripMetaManager creates a new Manager that strips metadata and typemeta fields from the manager's fieldset.
    func NewStripMetaManager(fieldManager Manager) Manager {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    std::unique_ptr<Pass> CreateLowerGlobalsToMlProgramPass();
    
    // Create a pass that lowers variable read/write ops to ml_program ops.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateLowerVariableOpsToMlProgramPass();
    
    // Strips saved_model attributes from a module and its functions.
    std::unique_ptr<OperationPass<ModuleOp>> CreateStripSavedModuleMetadataPass();
    
    // Convert the session initializer to a function.
    std::unique_ptr<OperationPass<ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.cc

          builder.getStringAttr(kTfSavedModelIndexPathAttr),
          builder.getStrArrayAttr({index_path}));
    
      new_arg_attrs.emplace_back(index_path_attr);
      return new_arg_attrs;
    }
    
    // Strips the "assets/" directory prefix, if `filename` begins with it. The
    // SavedModel loader attaches the prefix for you during loading.
    StringRef MaybeStripAssetDirectoryPrefix(const StringRef filename) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top