Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for aN (0.66 sec)

  1. guava/src/com/google/common/collect/Maps.java

        };
      }
    
      /**
       * Returns an immutable map instance containing the given entries. Internally, the returned map
       * will be backed by an {@link EnumMap}.
       *
       * <p>The iteration order of the returned map follows the enum's iteration order, not the order in
       * which the elements appear in the given map.
       *
       * @param map the map to make an immutable copy of
       * @return an immutable map containing those entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	}
    	return n.V, nil
    }
    
    // Scanner is an interface used by [Rows.Scan].
    type Scanner interface {
    	// Scan assigns a value from a database driver.
    	//
    	// The src value will be of one of the following types:
    	//
    	//    int64
    	//    float64
    	//    bool
    	//    []byte
    	//    string
    	//    time.Time
    	//    nil - for NULL values
    	//
    	// An error should be returned if the value cannot be stored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        },
        "io.k8s.api.core.v1.EphemeralContainer": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. fastapi/applications.py

                    * Serialization: you could return an arbitrary object and the
                        `response_model` would be used to serialize that object into the
                        corresponding JSON.
                    * Filtering: the JSON sent to the client will only contain the data
                        (fields) defined in the `response_model`. If you returned an object
                        that contains an attribute `password` but the `response_model` does
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
            "description": "DeleteOptions may be provided when deleting an API object.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
            "description": "DeleteOptions may be provided when deleting an API object.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // given element type, and returns an MLIR tensor type.
      absl::StatusOr<TensorType> ConvertElementTypeAndShape(
          mlir::Type element_type, const shape_inference::ShapeHandle& handle,
          shape_inference::InferenceContext* context, mlir::Builder builder);
    
      // Converts the inferred subtypes for an element type to corresponding MLIR
      // types in 'context'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": {
            "description": "DeleteOptions may be provided when deleting an API object.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    				t.Fatalf("Manager should not have an error %v", err)
    			}
    
    			// we should not have disk pressure
    			if manager.IsUnderDiskPressure() {
    				t.Fatalf("Manager should not report disk pressure")
    			}
    
    			// synchronize
    			_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    			if err != nil {
    				t.Fatalf("Manager should not have an error %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top