Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for splitLine (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        DenseIntElementsAttr split_dim_attr;
        if (!matchPattern(op.getSplitDim(), m_Constant(&split_dim_attr)))
          return failure();
    
        // Get the dimension we are splitting at. Offset properly if it's negative.
        int64_t input_rank = input_type.getRank();
        int64_t dim_index = (*split_dim_attr.begin()).getSExtValue();
        if (dim_index < 0) dim_index += input_rank;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.17.md

    - Fix bug where EndpointSlice controller would attempt to modify shared objects. ([#85368](https://github.com/kubernetes/kubernetes/pull/85368), [@robscott](https://github.com/robscott))
    - Splitting IP address type into IPv4 and IPv6 for EndpointSlices ([#84971](https://github.com/kubernetes/kubernetes/pull/84971), [@robscott](https://github.com/robscott))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.9.md

    This release passes 129/145 Kubernetes e2e conformance tests.
    *   Container Runtime Interface API change. [[@yujuhong](https://github.com/yujuhong)]
        *   A new field is added to CRI container log format to support splitting a long log line into multiple lines. ([#55922](https://github.com/kubernetes/kubernetes/pull/55922), [@Random-Liu](https://github.com/Random-Liu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.20.md

      Previously, for IPv6, if the podSubnet had a mask lower than /112, kubeadm calculated a node-mask to be multiple of eight and splitting the available bits to maximise the number used for nodes. ([#95723](https://github.com/kubernetes/kubernetes/pull/95723), [@aojea](https://github.com/aojea)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"version": {
    						SchemaProps: spec.SchemaProps{
    							Description: "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    				},
    				Required: []string{"groupVersion", "version"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	// in the HEADER frame.
    	Priority http2PriorityParam
    }
    
    // WriteHeaders writes a single HEADERS frame.
    //
    // This is a low-level header writing method. Encoding headers and
    // splitting them into any necessary CONTINUATION frames is handled
    // elsewhere.
    //
    // It will perform exactly one Write to the underlying Writer.
    // It is the caller's responsibility to not call other Write methods concurrently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top