Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 158 for limiting (0.12 sec)

  1. docs/vi/docs/features.md

        * Bởi vì các cấu trúc dữ liệu của Pydantic chỉ là các instances của class bạn định nghĩa; auto-completion, linting, mypy và trực giác của bạn nên làm việc riêng biệt với những dữ liệu mà bạn đã validate.
    * Validate **các cấu trúc phức tạp**:
        * Sử dụng các models Pydantic phân tầng, `List` và `Dict` của Python `typing`,...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/internal/trace/summary_test.go

    				if !ok {
    					t.Errorf("want goroutine %d for task %d, not found", goid, id)
    					continue
    				}
    				if g.ID != goid {
    					t.Errorf("goroutine summary for %d does not match task %d listing of %d", g.ID, id, goid)
    				}
    			}
    		}
    
    		// Marked as seen.
    		delete(wantTasks, id)
    	}
    	if len(wantTasks) != 0 {
    		t.Errorf("failed to find tasks: %#v", wantTasks)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. cmd/erasure-multipart.go

    }
    
    // ListMultipartUploads - lists all the pending multipart
    // uploads for a particular object in a bucket.
    //
    // Implements minimal S3 compatible ListMultipartUploads API. We do
    // not support prefix based listing, this is a deliberate attempt
    // towards simplification of multipart APIs.
    // The resulting ListMultipartsInfo structure is unmarshalled directly as XML.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. docs/es/docs/features.md

        * Porque las estructuras de datos de Pydantic son solo <abbr title='En español: ejemplares. Aunque a veces los llaman incorrectamente "instancias"'>instances</abbr> de clases que tu defines, el auto-completado, el linting, mypy y tu intuición deberían funcionar bien con tus datos validados.
    * Valida **estructuras complejas**:
        * Usa modelos jerárquicos de modelos de Pydantic, `typing` de Python,  `List` y `Dict`, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer.go

    			return true
    		},
    	}
    	traversal.Walk(r.graph.graph, startingVertex, func(n graph.Node) bool {
    		if n.ID() == nodeVertex.ID() {
    			// We found the node we want
    			found = true
    		}
    		// Stop visiting if we've found the node we want
    		return found
    	})
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. platforms/documentation/docs/README.md

    ### Code Snippets
    
    Snippets and output belong under `src/snippets` and are typically included in the user manual. This is a typical example:
    
    #### Example multi-language sample file listing
    This shows Groovy and Kotlin sample projects under "sample-dir" which is defined as "$projectDir/src/snippets".
    
    ```
    platforms/documentation/docs/src/snippets/
    └── initScripts/customLogger/
        ├── customLogger.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/config.go

    	Run(stop <-chan struct{})
    
    	// HasSynced returns true after initial cache synchronization is complete
    	HasSynced() bool
    }
    
    const (
    	// NamespaceAll is a designated symbol for listing across all namespaces
    	NamespaceAll = ""
    )
    
    // ResolveShortnameToFQDN uses metadata information to resolve a reference
    // to shortname of the service to FQDN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. cni/README.md

    ## Privileges required
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/prune.go

    	for _, ul := range objectsList {
    		for _, o := range ul.Items {
    			obj := object.NewK8sObject(&o, nil, nil)
    			oh := obj.Hash()
    
    			// kube client does not differentiate API version when listing, added this check to deduplicate.
    			if deletedObjects[oh] {
    				continue
    			}
    			if err := h.deleteResource(obj, componentName, oh); err != nil {
    				errs = append(errs, err)
    			}
    			deletedObjects[oh] = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. cmd/bucket-handlers_test.go

    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testListMultipartUploadsHandler, endpoints: []string{"ListMultipartUploads"}})
    }
    
    // testListMultipartUploadsHandler - Tests validate listing of multipart uploads.
    func testListMultipartUploadsHandler(obj ObjectLayer, instanceType, bucketName string, apiRouter http.Handler,
    	credentials auth.Credentials, t *testing.T,
    ) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
Back to top