Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 585 for farm (0.09 sec)

  1. cmd/admin-handlers-idp-ldap.go

    	if objectAPI == nil {
    		return
    	}
    
    	// Validate API arguments.
    
    	q := madmin.PolicyEntitiesQuery{
    		Users:  r.Form["user"],
    		Groups: r.Form["group"],
    		Policy: r.Form["policy"],
    	}
    
    	// Query IAM
    
    	res, err := globalIAMSys.QueryLDAPPolicyEntities(r.Context(), q)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_request_files/test_tutorial001_an_py39.py

                        "summary": "Create File",
                        "operationId": "create_file_files__post",
                        "requestBody": {
                            "content": {
                                "multipart/form-data": {
                                    "schema": {
                                        "$ref": "#/components/schemas/Body_create_file_files__post"
                                    }
                                }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      if (tti.can_transform) {
        // We can transform to functional form trivially without outlining.
        cond_name = tti.callee_names[0].str();
        body_name = tti.callee_names[1].str();
      } else {
        // The WhileRegion regions can refer to either arguments of the region, or
        // external values implicitly captured by the region. When converting to
        // functional form, all such external values need to become function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. src/cmd/trace/tasks.go

      border-collapse: collapse;
    }
    td,
    th {
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    </style>
    <body>
    Search log text: <form action="/usertask"><input name="logtext" type="text"><input type="submit"></form><br>
    <table border="1" sortable="1">
    <tr>
    <th>Task type</th>
    <th>Count</th>
    <th>Duration distribution (complete tasks)</th>
    </tr>
    {{range $}}
      <tr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/2-unique.md

    canonicalizing values (like "interning" or "hash-consing").
    
    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_regions.cc

          if (failed(ConvertIfOp(if_op))) {
            op->emitOpError() << "failed to convert to region form";
            return WalkResult::interrupt();
          }
        } else if (CaseOp case_op = llvm::dyn_cast<CaseOp>(op)) {
          if (failed(ConvertCaseOp(case_op))) {
            op->emitOpError() << "failed to convert to region form";
            return WalkResult::interrupt();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/strconv/atoc.go

    //
    // The number represented by s must be of the form N, Ni, or N±Ni, where N stands
    // for a floating-point number as recognized by [ParseFloat], and i is the imaginary
    // component. If the second N is unsigned, a + sign is required between the two components
    // as indicated by the ±. If the second N is NaN, only a + sign is accepted.
    // The form may be parenthesized and cannot contain any spaces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/go/types/generate_test.go

    //           For now this is a good starting point.
    
    // A renameMap maps old strings to new strings.
    type renameMap map[string]string
    
    // makeRenameMap returns a renameMap populates from renames entries of the form "from->to".
    func makeRenameMap(renames ...string) renameMap {
    	m := make(renameMap)
    	for _, r := range renames {
    		s := strings.Split(r, "->")
    		if len(s) != 2 {
    			panic("invalid rename entry: " + r)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. cmd/peer-rest-server.go

    		return
    	}
    
    	sizeStr := r.Form.Get(peerRESTSize)
    	durationStr := r.Form.Get(peerRESTDuration)
    	concurrentStr := r.Form.Get(peerRESTConcurrent)
    	storageClass := r.Form.Get(peerRESTStorageClass)
    	bucketName := r.Form.Get(peerRESTBucket)
    	enableSha256 := r.Form.Get(peerRESTEnableSha256) == "true"
    	enableMultipart := r.Form.Get(peerRESTEnableMultipart) == "true"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // "normalized" form of the embeddings. A structural restriction is normalized
    // if it is a single union containing no interface terms, and is minimal in the
    // sense that removing any term changes the set of types satisfying the
    // constraint. It is left as a proof for the reader that, modulo sorting, there
    // is exactly one such normalized form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top