Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 128 for input1 (0.09 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            }
            return binaryExpression
        }
    
        /**
         * For prefix and postfix `++` and `--`, the idea is the same because FIR represents it as several operations. For example, for `i++`,
         * if the input PSI is `i`, we instead resolve `i++` and extract the read part of this access for `i`.
         */
        private fun KtElement.getContainingUnaryIncOrDecExpression(): KtUnaryExpression? {
            if (this !is KtExpression) return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-lift-quantizable-spots-as-functions | FileCheck %s
    
    // CHECK-LABEL: @conv_fn(
    // CHECK-SAME:          %[[ARG_0:.*]]: tensor<1x3x3x4xf32>
    func.func @conv_fn(%arg0: tensor<1x3x3x4xf32>) -> tensor<1x3x3x4xf32> {
      %0 = stablehlo.constant dense<2.000000e+00> : tensor<3x3x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-tensor-array-ops-decomposition | FileCheck %s
    
    // Test read and write on a tensor list.
    
    // CHECK-LABEL: func @main
    func.func @main() -> tensor<3xf32> {
      %size = "tf.Const"() {value = dense<5> : tensor<i32>} : () -> tensor<i32>
      // CHECK: %[[BUFFER:.*]] = "tf.BroadcastTo"
      // CHECK-SAME: -> tensor<5x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

      }
    
      /**
       * Returns a {@code Future} whose result is taken from the given primary {@code input} or, if the
       * primary input fails with the given {@code exceptionType}, from the result provided by the
       * {@code fallback}. {@link AsyncFunction#apply} is not invoked until the primary input has
       * failed, so if the primary input succeeds, it is never invoked. If, during the invocation of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // cluster these nodes. This prevents other work on this device from being
      // delayed by work on other devices. We consider predecessors of the entire
      // cluster rather than just the inputs to the node to prevent the cluster
      // still being combined in cases where the 'to' cluster has multiple
      // dependencies on the 'from' cluster and another dependency leads to a
      // merging of the clusters.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeToken.java

        return new TypeSet();
      }
    
      /**
       * Returns the generic form of {@code superclass}. For example, if this is {@code
       * ArrayList<String>}, {@code Iterable<String>} is returned given the input {@code
       * Iterable.class}.
       */
      public final TypeToken<? super T> getSupertype(Class<? super T> superclass) {
        checkArgument(
            this.someRawTypeIsSubclassOf(superclass),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    	tests := map[string]struct {
    		stdin              bool
    		stdout             bool
    		stderr             bool
    		tty                bool
    		responseStatusCode int
    		uid                bool
    	}{
    		"no input or output":           {responseStatusCode: http.StatusBadRequest},
    		"stdin":                        {stdin: true, responseStatusCode: http.StatusSwitchingProtocols},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    	}
    
    	return tlsOptions, nil
    }
    
    // setContentTypeForClient sets the appropriate content type into the rest config
    // and handles defaulting AcceptContentTypes based on that input.
    func setContentTypeForClient(cfg *restclient.Config, contentType string) {
    	if len(contentType) == 0 {
    		return
    	}
    	cfg.ContentType = contentType
    	switch contentType {
    	case runtime.ContentTypeProtobuf:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    					continue
    				}
    
    				vchange := phielimValue(v)
    				if vchange && debug > 1 {
    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// Eliminate copy inputs.
    				// If any copy input becomes unused, mark it
    				// as invalid and discard its argument. Repeat
    				// recursively on the discarded argument.
    				// This phase helps remove phantom "dead copy" uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      optional string apiVersion = 1;
    
      // Kind is the API kind the resources belong to.
      // Required.
      optional string kind = 2;
    }
    
    // ParamRef describes how to locate the params to be used as input to
    // expressions of rules applied by a policy binding.
    // +structType=atomic
    message ParamRef {
      // name is the name of the resource being referenced.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top