Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,205 for Avery (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

    // PolicyRule maps requests based off metadata to an audit Level.
    // Requests must match the rules of every field (an intersection of rules).
    message PolicyRule {
      // The Level that requests matching this rule are recorded at.
      optional string level = 1;
    
      // The users (by authenticated user name) this rule applies to.
      // An empty list implies every user.
      // +optional
      // +listType=atomic
      repeated string users = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/sql-databases.md

        * Although it's probably not very problematic here with the way `SQLAlchemy` works.
        * But if you added more code to the middleware that had a lot of <abbr title="input and output">I/O</abbr> waiting, it could then be problematic.
    * A middleware is run for *every* request.
        * So, a connection will be created for every request.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. architecture/runtimes.md

    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the runtimes.
    Not every module contributes to every runtime.
    
    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/index.md

    # Dependencies
    
    **FastAPI** has a very powerful but intuitive **<abbr title="also known as components, resources, providers, services, injectables">Dependency Injection</abbr>** system.
    
    It is designed to be very simple to use, and to make it very easy for any developer to integrate other components with **FastAPI**.
    
    ## What is "Dependency Injection"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    // Insert a "requant" op after the mean op if the mean has different scales for
    // input & output.
    // Please note: THIS IS NOT a mathmetically-equivalent transformation and it may
    // loose accuracy, so we need to use this very very carefully.
    LogicalResult InsertRequantForReduceMean::matchAndRewrite(
        TFL::MeanOp mean_op, PatternRewriter& rewriter) const {
      auto input = mean_op.getInput();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. .github/workflows/feedback.yml

    name: Feedback
    
    on:
      schedule:
        - cron: '0 * * * *' # every hour
      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      feedback:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update.
          # https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 516 bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    // It cannot be removed by loop-invariant-code-motion pass since every value
    // is used and changed in the while loop.
    
    // Moreover, we require
    // 1. no implicit argument: For every operation in whileOp, all dependent values
    //    (except for constant) are explicitly passed in.
    // 2. no side effect: Every operation inside whileOp can be safely
    //    remove when it is useEmpty().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/runtime/mwbbuf.go

    // flushing the buffer.
    //
    // TODO: A "go:nosplitrec" annotation would be perfect for this.
    //
    //go:nowritebarrierrec
    //go:nosplit
    func wbBufFlush() {
    	// Note: Every possible return from this function must reset
    	// the buffer's next pointer to prevent buffer overflow.
    
    	if getg().m.dying > 0 {
    		// We're going down. Not much point in write barriers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Lists.java

              checkElementIndex(index, size());
              return rest[index - 2];
          }
        }
    
        @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the lists. For example:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. build/lib/release.sh

            client_bins=("${KUBE_CLIENT_BINARIES_WIN[@]}")
          fi
    
          # This fancy expression will expand to prepend a path
          # (${LOCAL_OUTPUT_BINPATH}/${platform}/) to every item in the
          # client_bins array.
          cp "${client_bins[@]/#/${LOCAL_OUTPUT_BINPATH}/${platform}/}" \
            "${release_stage}/client/bin/"
    
          kube::release::clean_cruft
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top