Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,435 for useAbs (0.17 sec)

  1. docs/sts/README.md

    | [**WebIdentity**](https://github.com/minio/minio/blob/master/docs/sts/web-identity.md) | Let users request temporary credentials using any OpenID(OIDC) compatible web identity providers such as KeyCloak, Dex, Facebook, Google etc. |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. pkg/config/constants/constants.go

    	// DataplaneMode namespace label for determining ambient mesh behavior
    	DataplaneModeLabel = "istio.io/dataplane-mode"
    	// Set by users to indicate that the (namespace|pod) should be captured for ambient
    	DataplaneModeAmbient = "ambient"
    	// Set by users to indicate that the (namespace|pod) should NOT be captured for ambient
    	DataplaneModeNone    = "none"
    	DataplaneModeInherit = "inherit" // TODO do we need this atm
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

      return composite_users;
    }
    
    // Checks that the only users of `tf.VarHandleOp` are
    // `tf.ReadVariableOp` and `tf.AssignVariableOp`.
    mlir::LogicalResult ValidateVarHandle(TF::VarHandleOp var_handle_op) {
      auto composite_ops = GetCompositeResourceUserNames(var_handle_op);
      if (!composite_ops.empty())
        return var_handle_op.emitOpError()
               << "expects users to be 'tf.ReadVariableOp' or "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/bigger-applications.md

    │   │   └── users.py     # "users" submodule, e.g. import app.routers.users
    │   └── internal         # "internal" is a "Python subpackage"
    │       ├── __init__.py  # makes "internal" a "Python subpackage"
    │       └── admin.py     # "admin" submodule, e.g. import app.internal.admin
    ```
    
    ## `APIRouter`
    
    Let's say the file dedicated to handling just users is the submodule at `/app/routers/users.py`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    // limitations under the License.
    
    [[gradle_directories]]
    = Gradle Directories
    
    Gradle uses two main directories to perform and manage its work: the <<#gradle_user_home>> and the <<#project_root>>.
    
    image::author-gradle-2.png[]
    
    [[gradle_user_home]]
    == Gradle User Home directory
    
    By default, the Gradle User Home (`~/.gradle` or `C:\Users\<USERNAME>\.gradle`) stores global configuration properties, initialization scripts, caches, and log files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/flagalloc.go

    			// subsequent blocks.
    			remove = append(remove, v)
    			copyFlags(v, b)
    			// Note: this flag generator is not properly linked up
    			// with the flag users. This breaks the SSA representation.
    			// We could fix up the users with another pass, but for now
    			// we'll just leave it. (Regalloc has the same issue for
    			// standard regs, and it runs next.)
    			// For this reason, take care not to add this flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        // cached, uses the cached result without creating new entry in the state
        // vector. Otherwise, allocate a new entry in the state vector.
        void InitializeOperandState(quantfork::QuantizeRegionOp op, int index,
                                    llvm::DenseMap<Value, int> *cache);
    
        // Sets the state of the index-th result of the op. If this result is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/users/users_linux.go

    }
    
    // UsersAndGroups is a structure that holds entry maps of users and groups.
    // It is returned by AddUsersAndGroups.
    type UsersAndGroups struct {
    	// Users is an entry map of users.
    	Users *EntryMap
    	// Groups is an entry map of groups.
    	Groups *EntryMap
    }
    
    // entry is a structure that holds information about a UNIX user or group.
    // It partialially conforms parsing of both users from /etc/passwd and groups from /etc/group.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init.go

    		// We echo the Audit-ID in to the response header.
    		// It's not guaranteed Audit-ID http header is sent for all requests.
    		// For example, when user run "kubectl exec", apiserver uses a proxy handler
    		// to deal with the request, users can only get http headers returned by kubelet node.
    		//
    		// This filter will also be used by other aggregated api server(s). For an aggregated API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        builder_.setInsertionPoint(cst);
    
        // The following loop will change the value uses, thus we cache all the uses
        // needs to be changed.
        SmallVector<std::pair<Operation*, int>> uses;
        for (OpOperand& use : value.getUses()) {
          uses.push_back({use.getOwner(), use.getOperandNumber()});
        }
        for (const auto [user, operand_num] : uses) {
          const std::unique_ptr<OpQuantSpec> spec = GetQuantSpec(user);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top