Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 919 for squash (0.12 sec)

  1. pkg/wellknown/wellknown.go

    	Router = "envoy.filters.http.router"
    	// Health checking HTTP filter
    	HealthCheck = "envoy.filters.http.health_check"
    	// Lua HTTP filter
    	Lua = "envoy.filters.http.lua"
    	// Squash HTTP filter
    	Squash = "envoy.filters.http.squash"
    	// HTTPExternalAuthorization HTTP filter
    	HTTPExternalAuthorization = "envoy.filters.http.ext_authz"
    	// HTTPRoleBasedAccessControl HTTP filter
    	HTTPRoleBasedAccessControl = "envoy.filters.http.rbac"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. .asf.yaml

    github:
      description: "Apache Maven core"
      homepage: https://maven.apache.org/ref/current
      labels:
        - java
        - build-management
        - apache-maven
        - maven
        - hacktoberfest
      enabled_merge_buttons:
        squash: true
        merge: false
        rebase: true
      autolink_jira:
        - MNG
    notifications:
      commits: ******@****.***
      issues: ******@****.***
      pullrequests: ******@****.***
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 15 13:24:09 UTC 2023
    - 485 bytes
    - Viewed (0)
  3. pkg/config/xds/deprecated.go

    		wellknown.Lua:                         "envoy.lua",
    		wellknown.HTTPRateLimit:               "envoy.rate_limit",
    		wellknown.Router:                      "envoy.router",
    		wellknown.Squash:                      "envoy.squash",
    		wellknown.HTTPInspector:               "envoy.listener.http_inspector",
    		wellknown.OriginalDestination:         "envoy.listener.original_dst",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/quantize_patterns.td

    def F32ElementsAttr : ElementsAttrBase<
      CPred<"$_self.cast<ElementsAttr>().getShapedType().getElementType().isF32()">, "float constant tensor">;
    
    // Squash tfl.dequantize and tfl.quantize pairs.
    // TODO(fengliuai): Compare the scale of input and output. This can also be
    // squashed to a requantize op if the scales are different.
    def : Pat<(TFL_QuantizeOp (TFL_DequantizeOp $in), $qt), (replaceWithValue $in)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/transform_patterns.td

                      (Arith_ConstantOp ConstantAttr<RankedF32ElementsAttr<[]>,
                       "-1.0f">), TFL_AF_None), $act)>;
    
    // Squash tfl.dequantize and tfl.quantize pairs.
    // TODO(b/185915462): Compare the scale of input and output. This can also be
    // squashed to a requantize op if the scales are different.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

     [concurrency]: https://square.github.io/okhttp/concurrency/
     [debug_logging]: https://square.github.io/okhttp/debug_logging/
     [releasing]: https://square.github.io/okhttp/releasing/
     [security]: https://square.github.io/okhttp/security/
     [works_with_okhttp]: https://square.github.io/okhttp/works_with_okhttp/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 14 08:26:50 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. docs/contribute/contributing.md

     [concurrency]: https://square.github.io/okhttp/concurrency/
     [debug_logging]: https://square.github.io/okhttp/debug_logging/
     [releasing]: https://square.github.io/okhttp/releasing/
     [security]: https://square.github.io/okhttp/security/
     [works_with_okhttp]: https://square.github.io/okhttp/works_with_okhttp/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 14 08:26:50 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

         copy of the boilerplate license comment (can be copied from an existing
         file).
      3. Files should be formatted according to Google's [Java style guide][].
      4. Please squash all commits for a change into a single commit (this can be
         done using `git rebase -i`). Do your best to have a
         [well-formed commit message][] for the change.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    After your code changes, make sure
    
    - To add test cases for the new code. If you have questions about how to do it, please ask on our [Slack](https://slack.min.io) channel.
    - To run `make verifiers`
    - To squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
    - To run `make test` and `make build` completes.
    
    ### Commit changes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/scope.go

    	}
    	s.elems[name] = obj
    }
    
    // Squash merges s with its parent scope p by adding all
    // objects of s to p, adding all children of s to the
    // children of p, and removing s from p's children.
    // The function f is called for each object obj in s which
    // has an object alt in p. s should be discarded after
    // having been squashed.
    func (s *Scope) Squash(err func(obj, alt Object)) {
    	p := s.parent
    	assert(p != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top