Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for useN (0.25 sec)

  1. src/cmd/go/alldocs.go

    // in GOVCS notation as 'public:git|hg,private:all'.
    //
    // To allow unfettered use of any version control system for any package, use:
    //
    //	GOVCS=*:all
    //
    // To disable all use of version control, use:
    //
    //	GOVCS=*:off
    //
    // The 'go env -w' command (see 'go help env') can be used to set the GOVCS
    // variable for future go command invocations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    }
    
    // Prepare creates a prepared statement for use within a transaction.
    //
    // The returned statement operates within the transaction and will be closed
    // when the transaction has been committed or rolled back.
    //
    // To use an existing prepared statement on this transaction, see [Tx.Stmt].
    //
    // Prepare uses [context.Background] internally; to specify the context, use
    // [Tx.PrepareContext].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it"
            },
            "user": {
              "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
              "type": "string"
            }
          },
          "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        return errors::InvalidArgument(
            "LegacyFedInput node ", node->name(),
            " has non primary output in use and can not be replaced with "
            "Placeholder node");
      }
    
      DataType dtype = it->second.imported_dtype;
      // Uses the existing output type if it isn't specified by the user.
      if (dtype == DT_INVALID) {
        dtype = node->attr().at("output_types").list().type(0);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // badRequestError is a literal string (used by in the server in HTML,
    // unescaped) to tell the user why their request was bad. It should
    // be plain text without user info or other embedded errors.
    func badRequestError(e string) error { return statusError{StatusBadRequest, e} }
    
    // statusError is an error used to respond to a request with an HTTP status.
    // The text should be plain text without user info or other embedded errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field xdoc.separator="blank">
              <name>properties</name>
              <version>4.0.0+</version>
              <description>
                Properties that can be used throughout the POM as a substitution, and
                are used as filters in resources if enabled.
                The format is {@code &lt;name>value&lt;/name>}.
              </description>
              <type>Properties</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    	}{
    		{
    			description:                 "with SupplementalGroupsPolicy and User",
    			hasSupplementalGroupsPolicy: true,
    			pod:                         podWithSupplementalGroupsPolicy,
    		},
    		{
    			description:                 "without SupplementalGroupsPolicy and User",
    			hasSupplementalGroupsPolicy: false,
    			pod:                         podWithoutSupplementalGroupsPolicy,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"username": "jane",
    				"exp": %d
    			}`, valid.Unix()),
    			wantErr: `oidc: error evaluating user info validation rule: validation expression '!user.username.startsWith('system:')' failed: username cannot used reserved system: prefix`,
    		},
    		{
    			name: "user validation rule fails for user.groups",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      Operation* cast_op = nullptr;
      // First insert cast back for uses that need a cast and then
      // update the type.
      bool enqueue_callers = false;
      for (OpOperand& use : make_early_inc_range(result.getUses())) {
        if (isa<func::ReturnOp>(use.getOwner())) {
          enqueue_callers = true;
        } else if (NeedsCastBack(use, tf_dialect_)) {
          if (!cast_op) {
            Operation* op = result.getDefiningOp();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "x-kubernetes-map-type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
Back to top