Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for dictionary (0.46 sec)

  1. docs/en/docs/advanced/dataclasses.md

    5. You can use other standard type annotations with dataclasses as the request body.
    
        In this case, it's a list of `Item` dataclasses.
    
    6. Here we are returning a dictionary that contains `items` which is a list of dataclasses.
    
        FastAPI is still capable of <abbr title="converting the data to a format that can be transmitted">serializing</abbr> the data to JSON.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/iexport.go

    	if ix < 0 {
    		return ""
    	}
    	name := exportName[ix+1:]
    	if strings.HasPrefix(name, blankMarker) {
    		return "_"
    	}
    	return name
    }
    
    // The name used for dictionary parameters or local variables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. pkg/scheduler/metrics/resources/resources.go

    		val.AsApproximateFloat64(),
    		namespace, name, nodeName, schedulerName, priority, string(resourceName), unit,
    	)
    }
    
    // podRequestsAndLimitsByLifecycle returns a dictionary of all defined resources summed up for all
    // containers of the pod. Pod overhead is added to the
    // total container resource requests and to the total container limits which have a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. src/crypto/x509/internal/macos/security.go

    	ErrSecNotTrusted         = -67843
    )
    
    type OSStatus struct {
    	call   string
    	status int32
    }
    
    func (s OSStatus) Error() string {
    	return s.call + " error: " + strconv.Itoa(int(s.status))
    }
    
    // Dictionary keys are defined as build-time strings with CFSTR, but the Go
    // linker's internal linking mode can't handle CFSTR relocations. Create our
    // own dynamic strings instead and just never release them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/path-operation-advanced-configuration.md

                        }
                    },
                    "x-aperture-labs-portal": "blue"
                }
            }
        }
    }
    ```
    
    ### Benutzerdefiniertes OpenAPI-*Pfadoperation*-Schema
    
    Das Dictionary in `openapi_extra` wird mit dem automatisch generierten OpenAPI-Schema für die *Pfadoperation* zusammengeführt (mittels Deep Merge).
    
    Sie können dem automatisch generierten Schema also zusätzliche Daten hinzufügen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/path-operation-advanced-configuration.md

                        }
                    },
                    "x-aperture-labs-portal": "blue"
                }
            }
        }
    }
    ```
    
    ### Custom OpenAPI *path operation* schema
    
    The dictionary in `openapi_extra` will be deeply merged with the automatically generated OpenAPI schema for the *path operation*.
    
    So, you could add additional data to the automatically generated schema.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/events.md

    ```Python hl_lines="16  19"
    {!../../../docs_src/events/tutorial003.py!}
    ```
    
    Here we are simulating the expensive *startup* operation of loading the model by putting the (fake) model function in the dictionary with machine learning models before the `yield`. This code will be executed **before** the application **starts taking requests**, during the *startup*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/events.md

    ```Python hl_lines="16  19"
    {!../../../docs_src/events/tutorial003.py!}
    ```
    
    Hier simulieren wir das langsame *Hochfahren*, das Laden des Modells, indem wir die (Fake-)Modellfunktion vor dem `yield` in das Dictionary mit Modellen für maschinelles Lernen einfügen. Dieser Code wird ausgeführt, **bevor** die Anwendung **beginnt, Requests entgegenzunehmen**, während des *Hochfahrens*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/internal/XcodeProjectFile.java

    import com.dd.plist.NSDictionary;
    import org.gradle.api.internal.PropertyListTransformer;
    import org.gradle.plugins.ide.internal.generator.PropertyListPersistableConfigurationObject;
    
    public class XcodeProjectFile extends PropertyListPersistableConfigurationObject<NSDictionary> {
    
        public XcodeProjectFile(PropertyListTransformer<NSDictionary> transformer) {
            super(NSDictionary.class, transformer);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/internal/XcodeWorkspaceSettingsFile.java

        }
    
        @Override
        protected NSDictionary newRootObject() {
            return new NSDictionary();
        }
    
        @Override
        protected void store(NSDictionary rootObject) {
        }
    
        @Override
        protected void load(NSDictionary rootObject) {
        }
    
        @Override
        protected String getDefaultResourceName() {
            return "default.xcsettings";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top