Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for gather (0.65 sec)

  1. samples/bookinfo/src/productpage/productpage.py

    
    @app.route('/logout', methods=['GET'])
    def logout():
        response = app.make_response(redirect(request.referrer))
        session.pop('user', None)
        return response
    
    # a helper function for asyncio.gather, does not return a value
    
    
    async def getProductReviewsIgnoreResponse(product_id, headers):
        getProductReviews(product_id, headers)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    // (only `type` and one other matching field should be set at once).
    type MetricSpec struct {
    	// type is the type of metric source.  It should be one of "ContainerResource",
    	// "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object.
    	// Note: "ContainerResource" type is available on when the feature-gate
    	// HPAContainerMetrics is enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolver.java

                if (lockingState.mustValidateLockState() && !lockingState.getLockedDependencies().isEmpty()) {
                    // Invalid lock state, need to do a real resolution to gather locking failures
                    return delegate.resolveGraph(resolveContext);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

            def projectLock = workerLeaseService.getProjectLock(path("root"), path(":project"))
            def otherBuildAllProjectsLock = workerLeaseService.getAllProjectsLock(path("other"))
            def otherBuildProjectLock = workerLeaseService.getProjectLock(path("other"), path(":project"))
    
            given:
            assert !lockIsHeld(allProjectsLock)
            assert workerLeaseService.currentProjectLocks.empty
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

        return %0 : tensor<2x3x2x2xf32>
      }
    // CHECK: %[[GATHER:.+]] = "stablehlo.gather"(%[[ARG_0]], %[[ARG_1]]) {{.*}} : (tensor<3x4x2x!quant.uniform<i8:f32, {{.*}}>>, tensor<2x3x2xi32>) -> tensor<2x3x2x2x!quant.uniform<i8:f32, {{.*}}>>
    // CHECK: %[[UNIFORM_QUANTIZE_0:.+]] = stablehlo.uniform_quantize %[[GATHER]] : tensor<2x3x2x2x!quant.uniform<i8:f32, {{.*}}>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  6. samples/addons/README.md

    ### Zipkin
    
    [Zipkin](https://zipkin.io/) is a distributed tracing system. It helps gather timing data needed to troubleshoot latency problems in service architectures. Features include both the collection and lookup of this data.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/einsum.mlir

    // CHECK: %[[v4:.*]] = "tf.Shape"(%arg1) : (tensor<?x36x?x32xf32>) -> tensor<4xi32>
    // CHECK: %[[v5:.*]] = "tf.Gather"(%3, %[[cst_1]]) <{validate_indices = true}> : (tensor<3xi32>, tensor<2xi32>) -> tensor<2xi32>
    // CHECK: %[[v6:.*]] = "tf.Gather"(%4, %[[cst_2]]) <{validate_indices = true}> : (tensor<4xi32>, tensor<1xi32>) -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/types.go

    // (only `type` and one other matching field should be set at once).
    type MetricSpec struct {
    	// type is the type of metric source.  It should be one of "ContainerResource",
    	// "External", "Object", "Pods" or "Resource", each mapping to a matching field in the object.
    	// Note: "ContainerResource" type is available on when the feature-gate
    	// HPAContainerMetrics is enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      // user-provided specs are appended.
      //
      // It should look like:
      //
      // specs {matcher {function_name {regex: ".*"}} method {static_range_ptq {}}}
      // specs {
      //   matcher {function_name {regex: "composite_conv.*"}}
      //   method {static_range_ptq {...}}}
      // }
      // specs {
      //   matcher {function_name {regex: "composite_dot_general_fn_1"}}
      //   method {no_quantization {}}
      // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

    }
    
    // Helper function for unsorted segment ops.
    // Gathers params for positive segment ids and gathers 0 for inputs with
    // negative segment id.
    Output GatherDropNegatives(const Scope& scope, const Output& params,
                               Output& zero_clipped_indices, Output& is_positive) {
      auto gathered = Gather(scope, params, zero_clipped_indices);
      // Replace gathered params of negative indices with 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top