Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 322 for user4 (0.21 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

                        "monitorsValue"
                      ],
                      "image": "imageValue",
                      "fsType": "fsTypeValue",
                      "pool": "poolValue",
                      "user": "userValue",
                      "keyring": "keyringValue",
                      "secretRef": {
                        "name": "nameValue"
                      },
                      "readOnly": true
                    },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.json

                  "monitors": [
                    "monitorsValue"
                  ],
                  "image": "imageValue",
                  "fsType": "fsTypeValue",
                  "pool": "poolValue",
                  "user": "userValue",
                  "keyring": "keyringValue",
                  "secretRef": {
                    "name": "nameValue"
                  },
                  "readOnly": true
                },
                "flexVolume": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    class AllUsersAreAddOpsAndCanFuseWith<string op_to_fuse_with> : Constraint<CPred<
      "llvm::all_of($0.getUsers(), [&](Operation *user) {"
      "  if(!llvm::isa<TFL::AddOp>(user)) return false;"
      "  if(!user->getOperand(0).getDefiningOp<"#op_to_fuse_with#">()) return false;"
      "  return true;"
      "})">, "all users are AddOp and can fuse with "#op_to_fuse_with#"">;
    
    // TODO(b/294385379): This pattern only appears when we convert
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          if (!HasOutsideCompilationAncestor(user) || has_dynamic_outputs ||
              HasDynamicOutputs(user)) {
            if (!user_set.insert(user).second) continue;
            for (Value v : user->getOperands()) {
              if (tensorflow::TypeValidForXLA(v.getType()) &&
                  v.getDefiningOp() == op &&
                  !llvm::isa<mlir::tf_device::ReturnOp>(user))
                external_outputs.insert(v);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // The system creates an access token when a user logs on, and every
    // process executed on behalf of the user has a copy of the token.
    // The token identifies the user, the user's groups, and the user's
    // privileges. The system uses the token to control access to securable
    // objects and to control the ability of the user to perform various
    // system-related operations on the local computer.
    type Token Handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	// add the handler in the chain that adds the specified user to the request context
    	handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		r = r.WithContext(apirequest.WithUser(r.Context(), &user.DefaultInfo{
    			Name:   userName,
    			Groups: []string{user.AllAuthenticated},
    		}))
    
    		apfHandler.ServeHTTP(w, r)
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // is always available in the core and likely always will be, but we may have another ConfigurationProcessor
            // present supplied by the user. The rule is that we only allow the execution of one ConfigurationProcessor.
            // If there is more than one then we execute the one supplied by the user, otherwise we execute the
            // default SettingsXmlConfigurationProcessor.
            //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <style type="text/css">
    
    @media only screen and (max-width: 420px) {
    a[class="article-headline"] {
    font-size:22px !important;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            }
          }
        },
        "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {
          "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.",
          "type": "object",
          "properties": {
            "annotations": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/TypeToken.java

       * @Nullable X>, then users might pass a TypeParameter<Y>, where Y is a subtype of X, while still
       * passing a TypeToken<X>. This would be invalid. Maybe we could accept a TypeParameter<@PolyNull
       * X> if we support such a thing? It would be weird or misleading for users to be able to pass
       * `new TypeParameter<@Nullable T>() {}` and have it act as a plain `TypeParameter<T>`, but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top