Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for unstructured (0.21 sec)

  1. docs/en/docs/async.md

    And even if you were not using FastAPI, you could also write your own async applications with <a href="https://anyio.readthedocs.io/en/stable/" class="external-link" target="_blank">AnyIO</a> to be highly compatible and get its benefits (e.g. *structured concurrency*).
    
    ### Other forms of asynchronous code
    
    This style of using `async` and `await` is relatively new in the language.
    
    But it makes working with asynchronous code a lot easier.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apps__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/controller.go

    			if builtinControllerFinalizer >= 0 {
    				if claim.Spec.AllocationMode == resourcev1alpha2.AllocationModeWaitForFirstConsumer ||
    					claim.DeletionTimestamp != nil {
    					// Allocated by scheduler with structured parameters. We can "deallocate"
    					// by clearing the allocation.
    					claim.Status.Allocation = nil
    				}
    			} else if claim.Spec.AllocationMode == resourcev1alpha2.AllocationModeWaitForFirstConsumer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    ====
    
    == Reporting problems
    
    Plugins can report problems through Gradle's problem-reporting APIs.
    The APIs report rich, structured information about problems happening during the build.
    This information can be used by different user interfaces such as Gradle's console output, Build Scans, or IDEs to communicate problems to the user in the most appropriate way.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. go.sum

    sigs.k8s.io/kustomize/kyaml v0.17.1 h1:TnxYQxFXzbmNG6gOINgGWQt09GghzgTP6mIurOgrLCQ=
    sigs.k8s.io/kustomize/kyaml v0.17.1/go.mod h1:9V0mCjIEYjlXuCdYsSXvyoy2BTsLESH7TlGV81S282U=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=
    sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08=
    sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				},
    			},
    			errors: []validationMatch{
    				invalid("spec", "validation", "openAPIV3Schema", "x-kubernetes-preserve-unknown-fields"),
    			},
    		},
    		{
    			name: "preserveUnknownFields with unstructural global schema",
    			resource: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group:   "group.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    //
    // Note: addr+size must be passed as the limit argument to the iterator's next method on
    // each iteration. This slightly awkward API is to allow typePointers to be destructured
    // by the compiler.
    //
    // nosplit because it is used during write barriers and must not be preempted.
    //
    //go:nosplit
    func (span *mspan) typePointersOf(addr, size uintptr) typePointers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    //
    // Typical use of an unwinder looks like:
    //
    //	var u unwinder
    //	for u.init(gp, 0); u.valid(); u.next() {
    //		// ... use frame info in u ...
    //	}
    //
    // Implementation note: This is carefully structured to be pointer-free because
    // tracebacks happen in places that disallow write barriers (e.g., signals).
    // Even if this is stack-allocated, its pointer-receiver methods don't know that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    										Format:  "",
    									},
    								},
    							},
    						},
    					},
    					"annotations": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    // series of arena frames. The arena map (mheap_.arenas) maps from
    // arena frame number to *heapArena, or nil for parts of the address
    // space not backed by the Go heap. The arena map is structured as a
    // two-level array consisting of a "L1" arena map and many "L2" arena
    // maps; however, since arenas are large, on many architectures, the
    // arena map consists of a single, large L2 map.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top