Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for computeLO (0.2 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

        /**
         * A compound access that read, compute, and write the computed value back. Note that calls to `<op>Assign` is not represented by this.
         */
        public class CompoundAssign(
            operationPartiallyAppliedSymbol: KaPartiallyAppliedFunctionSymbol<KaFunctionSymbol>,
            kind: Kind,
            operand: KtExpression,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

         */
        public open fun computePackageNamesWithTopLevelClassifiers(): Set<String>? = computePackageNames()
    
        /**
         * Whether the declaration provider has a specific implementation of [computePackageNamesWithTopLevelCallables]. This allows the
         * Analysis API backend to determine whether callable package sets are computed and cached separately or with [computePackageNames].
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch mean, to be used by TensorFlow
    to compute the running mean.}]>:$batch_mean,
        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch variance, to be used by
    TensorFlow to compute the running variance.}]>:$batch_variance,
        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch mean, to be reused
    in the gradient computation.}]>:$reserve_space_1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typeset.go

    	}
    
    	// If the interface is not fully set up yet, the type set will
    	// not be complete, which may lead to errors when using the
    	// type set (e.g. missing method). Don't compute a partial type
    	// set (and don't store it!), so that we still compute the full
    	// type set eventually. Instead, return the top type set and
    	// let any follow-on errors play out.
    	//
    	// TODO(gri) Consider recording when this happens and reporting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/go/types/typeset.go

    	}
    
    	// If the interface is not fully set up yet, the type set will
    	// not be complete, which may lead to errors when using the
    	// type set (e.g. missing method). Don't compute a partial type
    	// set (and don't store it!), so that we still compute the full
    	// type set eventually. Instead, return the top type set and
    	// let any follow-on errors play out.
    	//
    	// TODO(gri) Consider recording when this happens and reporting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        gcloud compute firewall-rules create "${CLUSTER_NAME}-default-internal-node" \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --source-ranges "10.0.0.0/8" \
          --allow "tcp:1-65535,udp:1-65535,icmp" \
          --target-tags "${NODE_TAG}"&
      fi
    
      if ! gcloud compute firewall-rules describe --project "${NETWORK_PROJECT}" "${NETWORK}-default-ssh" &>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. cluster/gce/upgrade-aliases.sh

      routes=()
      while IFS=$'\n' read -r route; do
        routes+=( "${route}" )
      done < <(gcloud compute routes list \
        --project="${PROJECT}" --filter='description=k8s-node-route' \
        --format='value(name)')
      while (( "${#routes[@]}" > 0 )); do
          echo Deleting k8s node routes "${routes[*]::${batch}}"
          gcloud compute routes delete --project "${PROJECT}" --quiet "${routes[@]::${batch}}"
          routes=( "${routes[@]:${batch}}" )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

        /**
         * The `set` function that's invoked when writing values corresponding to the given [indexArguments] and computed value from the
         * operation.
         */
        public val setPartiallyAppliedSymbol: KaPartiallyAppliedFunctionSymbol<KaFunctionSymbol> by validityAsserted(setPartiallyAppliedSymbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      SameOperandsAndResultShape]> {
      let summary = "Computes the complex absolute value of a tensor.";
    
      let description = [{
    Given a tensor `x` of complex numbers, this operation returns a tensor of type
    `float` or `double` that is the absolute value of each element in `x`. All
    elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute
    value is computed as \\( \sqrt{a^2 + b^2}\\).
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar.go

    	services []*Service
    
    	// List of virtual services imported by this egress listener above.
    	// As with per listener services, this
    	// will be used by RDS code to compute the virtual host configs for
    	// http listeners, as well as by TCP/TLS filter code to compute the
    	// service routing configs and the filter chain matches. We need a
    	// virtualService set per listener and not one per sidecarScope because
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top