Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 157 for concatenation (0.24 sec)

  1. src/cmd/fix/typecheck.go

    			curfn = curfn[:len(curfn)-1]
    
    		case *ast.FuncType:
    			typeof[n] = mkType(joinFunc(split(typeof[n.Params]), split(typeof[n.Results])))
    
    		case *ast.FieldList:
    			// Field list is concatenation of sub-lists.
    			t := ""
    			for _, field := range n.List {
    				if t != "" {
    					t += ", "
    				}
    				t += typeof[field]
    			}
    			typeof[n] = t
    
    		case *ast.Field:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // Use `PackOp` for scalar concatenation because `ConcatV2Op` doesn't
        // support scalar concatenation.
        if (is_scalar) {
          auto pack = CreateTfOp<PackOp>(rewriter, op, result_type, args,
                                         rewriter.getI64IntegerAttr(axis));
          return pack.getResult();
        }
    
        // New concatenation axis.
        auto axis_type = tensorflow::GetTypeFromTFTensorShape(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    // object containing configuration parameters, builtins have a predetermined
    // set of acceptable options.
    // LINT.IfChange
    enum BuiltinOperator : byte {
      ADD = 0,
      AVERAGE_POOL_2D = 1,
      CONCATENATION = 2,
      CONV_2D = 3,
      DEPTHWISE_CONV_2D = 4,
      DEPTH_TO_SPACE = 5,
      DEQUANTIZE = 6,
      EMBEDDING_LOOKUP = 7,
      FLOOR = 8,
      FULLY_CONNECTED = 9,
      HASHTABLE_LOOKUP = 10,
      L2_NORMALIZATION = 11,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
      //
      // Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
      // Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
      //   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // object containing configuration parameters, builtins have a predetermined
    // set of acceptable options.
    // LINT.IfChange
    enum BuiltinOperator : int32 {
      ADD = 0,
      AVERAGE_POOL_2D = 1,
      CONCATENATION = 2,
      CONV_2D = 3,
      DEPTHWISE_CONV_2D = 4,
      DEPTH_TO_SPACE = 5,
      DEQUANTIZE = 6,
      EMBEDDING_LOOKUP = 7,
      FLOOR = 8,
      FULLY_CONNECTED = 9,
      HASHTABLE_LOOKUP = 10,
      L2_NORMALIZATION = 11,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. src/encoding/xml/read.go

    // the XML element.  Otherwise, if the value implements
    // [encoding.TextUnmarshaler], Unmarshal calls that value's UnmarshalText method.
    //
    // Unmarshal maps an XML element to a string or []byte by saving the
    // concatenation of that element's character data in the string or
    // []byte. The saved []byte is never nil.
    //
    // Unmarshal maps an attribute value to a string or []byte by saving
    // the value in the string or slice.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    shutdown time public void stop() { ... log.info("MyComponent stopped"); ... } // Called repeatedly to process a particular argument value // which you want logged if debugging is enabled public void process(String value) { ... // Do the string concatenation only if logging is enabled if (log.isDebugEnabled()) log.debug("MyComponent processing " + value); ... } } META-INF/LICENSE.txt /* * $Header: /home/cvspublic/jakarta-commons/logging/LICENSE.txt,v 1.2 2003/04/06 20:37:31 rdonkin Exp $ * $Revision:...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_2x.md

        provided.
     *  Fix: Enforce that callers call `WebSocket.close()` on IO errors. Error
        handling in WebSockets is significantly improved.
     *  Fix: Don't use SPDY/3 style header concatenation for HTTP/2 request headers.
        This could have corrupted requests where multiple headers had the same name,
        as in cookies.
     *  Fix: Reject bad characters in the URL hostname. Previously characters like
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	//   - Rule accessing a property named "redact__d": {"rule": "self.redact__underscores__d > 0"}
    	//
    	// Equality on arrays with x-kubernetes-list-type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
    	// Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

                #define FUNCTION_RETURNS_ARG(X) X
    
                #define PREFIX MACRO_USES
                #define SUFFIX() _FUNCTION
                #define ARGS (MACRO_FUNCTION())
    
                // Token concatenation ## does not macro expand macro function args, so is usually wrapped by another macro function
                #define CONCAT_FUNCTION2(X, Y) X ## Y
                #define CONCAT_FUNCTION(X, Y) CONCAT_FUNCTION2(X, Y)
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top