Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for manipulation (0.36 sec)

  1. cmd/admin-handlers-users.go

    				writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    				return
    			}
    		}
    
    		if globalIAMSys.LDAPConfig.Enabled() {
    			// We don't allow internal group manipulation in this API when LDAP
    			// is enabled for now.
    			err = errIAMActionNotAllowed
    		} else {
    			updatedAt, err = globalIAMSys.AddUsersToGroup(ctx, updReq.Group, updReq.Members)
    		}
    	}
    	if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    			_, err = globalIAMSys.SetGroupStatus(ctx, updReq.Group, updReq.Status == madmin.GroupEnabled)
    		} else {
    			if globalIAMSys.LDAPConfig.Enabled() {
    				// We don't allow internal group manipulation in this API when
    				// LDAP is enabled for now (both sites must have LDAP disabled).
    				err = errIAMActionNotAllowed
    			} else {
    				_, err = globalIAMSys.AddUsersToGroup(ctx, updReq.Group, updReq.Members)
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  3. docs/fr/docs/features.md

    Avec **FastAPI** vous aurez toutes les fonctionnalités de **Pydantic**  (comme FastAPI est basé sur Pydantic pour toutes les manipulations de données):
    
    * **Pas de prise de tête**:
        * Pas de nouveau langage de définition de schéma à apprendre.
        * Si vous connaissez le typage en python vous savez comment utiliser Pydantic.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  4. RELEASE.md

            Keras inputs/outputs. Use `GradientTape` on the actual Tensors passed to
            the already-constructed model instead.
        *   Code that requires very tricky shape manipulation via converted op
            layers in order to work, where the Keras symbolic shape inference proves
            insufficient.
        *   Code that tries manually walking a `tf.keras.Model` layer by layer and
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  5. doc/go1.17_spec.html

    </pre>
    
    <p>
    If the map <code>m</code> is <code>nil</code> or the element <code>m[k]</code>
    does not exist, <code>delete</code> is a no-op.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    The built-in function <code>complex</code> constructs a complex
    value from a floating-point real and imaginary part, while
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. doc/go_spec.html

    The multi-valued <a href="#Receive_operator">receive operation</a>
    returns a received value along with an indication of whether the channel is closed.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    The built-in function <code>complex</code> constructs a complex
    value from a floating-point real and imaginary part, while
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top