Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 275 for toGetter (0.16 sec)

  1. cmd/object-api-datatypes.go

    	return false
    }
    
    // ListMultipartsInfo - represents bucket resources for incomplete multipart uploads.
    type ListMultipartsInfo struct {
    	// Together with upload-id-marker, this parameter specifies the multipart upload
    	// after which listing should begin.
    	KeyMarker string
    
    	// Together with key-marker, specifies the multipart upload after which listing
    	// should begin. If key-marker is not specified, the upload-id-marker parameter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/BUILD

        driver = "@llvm-project//mlir:run_lit.sh",
        tags_override = {
            "test_error_message.lit.pbtxt": ["no_oss"],  # TODO(b/150957738): to be fixed on oss.
        },
        test_file_exts = ["lit.pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "filecheck_test_utilities",
        testonly = True,
        srcs = [
            "test_error_message.lit.pbtxt.config.pbtxt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    		// OpenAPIVersionedService and StaticOpenAPISpec are populated in generic apiserver PrepareRun().
    		// Together they serve the /openapi/v2 endpoint on a generic apiserver. A generic apiserver may
    		// choose to not enable OpenAPI by having null openAPIConfig, and thus OpenAPIVersionedService
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/adsc/delta_test.go

    						},
    					},
    				},
    			},
    			expectedTree: `CDS/:
    LDS/:
      LDS/test-listener:
        RDS/test-rds-config:
        SDS/kubernetes://test:
    `,
    		},
    		{
    			desc: "put things together",
    			serverResponses: []*discovery.DeltaDiscoveryResponse{
    				{
    					TypeUrl: v3.ClusterType,
    					Resources: []*discovery.Resource{
    						{
    							Name:     "test-eds",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
     * Together, these methods give you full control over what artifacts will be published.
     * </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // reads ServiceImport in the cluster in order to extract the ClusterSet VIP and generate a
    // synthetic service for the MCS host (i.e. clusterset.local). The aggregate.Controller will then
    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    // The synthetic MCS service is a copy of the real k8s Service (e.g. cluster.local) with the same
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Unrolls a BatchMatMul on the batch dimension. We need to slice each batch out
    // of the inputs, matmul them individually, then stack them all back together at
    // the end.
    struct UnrollBatchMatMulPass
        : public impl::UnrollBatchMatMulPassBase<UnrollBatchMatMulPass> {
      void runOnOperation() override;
    };
    
    void UnrollBatchMatMulPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/bigger-applications.md

    ## The main `FastAPI`
    
    Now, let's see the module at `app/main.py`.
    
    Here's where you import and use the class `FastAPI`.
    
    This will be the main file in your application that ties everything together.
    
    And as most of your logic will now live in its own specific module, the main file will be quite simple.
    
    ### Import `FastAPI`
    
    You import and create a `FastAPI` class as normally.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		},
    		// Test the symmetry cases for affinity, the difference between affinity and symmetry is not the pod wants to run together with some existing pods,
    		// but the existing pods have the inter pod affinity preference while the pod to schedule satisfy the preference.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // The variables defined in the type-parameterized test macros are
    // static as typically these macros are used in a .h file that can be
    // #included in multiple translation units linked together.
    # define TYPED_TEST_CASE_P(CaseName) \
      static ::testing::internal::TypedTestCasePState \
          GTEST_TYPED_TEST_CASE_P_STATE_(CaseName)
    
    # define TYPED_TEST_P(CaseName, TestName) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top