Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for chunck (0.51 sec)

  1. src/net/http/h2_bundle.go

    		p = p[n:]
    		ntotal += n
    		b.r += n
    		b.size -= n
    		// If the first chunk has been consumed, advance to the next chunk.
    		if b.r == len(b.chunks[0]) {
    			http2putDataBufferChunk(b.chunks[0])
    			end := len(b.chunks) - 1
    			copy(b.chunks[:end], b.chunks[1:])
    			b.chunks[end] = nil
    			b.chunks = b.chunks[:end]
    			b.r = 0
    		}
    	}
    	return ntotal, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[FACTOR:.*]] = mhlo.constant dense<1.00195694>
      // CHECK: %[[CORRECTED_VAR:.*]] = chlo.broadcast_multiply %[[VAR]], %[[FACTOR]]
    
      // CHECK-DAG: %[[ALPHA:.*]] = mhlo.constant dense<0.199999988>
      // CHECK-DAG: %[[BETA:.*]] = mhlo.constant dense<8.000000e-01>
    
      // CHECK: %[[ALPHA_MUL_OLD_MEAN:.*]] = chlo.broadcast_multiply %[[ALPHA]], %arg3
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      func.return %3 : tensor<40x40xf32>
    
      // CHECK: %[[cst:.*]] = arith.constant dense<2.000000e+00> : tensor<40xf32>
      // CHECK: %[[dq:.*]] = "tfl.dequantize"
      // CHECK: %[[fc:.*]] = "tfl.fully_connected"(%arg0, %arg1, %[[dq]])
      // CHECK-NOT: tfl.add
      // CHECK: return %[[fc]]
    }
    
    // CHECK-LABEL: @FuseFullyConnectedReducedAddWithNoBias
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    // ValidatePodName can be used to check whether the given pod name is valid.
    // Prefix indicates this name will be used as part of generation, in which case
    // trailing dashes are allowed.
    var ValidatePodName = apimachineryvalidation.NameIsDNSSubdomain
    
    // ValidateReplicationControllerName can be used to check whether the given replication
    // controller name is valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-29878`](https://youtrack.jetbrains.com/issue/KT-29878) Smartcasts from type check or null check don't work if explicit true check as reference equality is used
    - [`KT-29936`](https://youtrack.jetbrains.com/issue/KT-29936) Smartcasts don't work if comparing with return value of some function and explicit true/false check is used
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    				*filter
    				:KUBE-SERVICES - [0:0]
    				:KUBE-EXTERNAL-SERVICES - [0:0]
    				:KUBE-FORWARD - [0:0]
    				:KUBE-NODEPORTS - [0:0]
    				-A KUBE-NODEPORTS -m comment --comment "ns2/svc2:p80 health check node port" -m tcp -p tcp --dport 30000 -j ACCEPT
    				-A KUBE-FORWARD -m conntrack --ctstate INVALID -j DROP
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		h := s.expr(n.Hash)
    		d := s.newValue1A(ssa.OpAddr, typs.BytePtr, n.Descriptor, s.sb)
    
    		// Check the cache first.
    		var merge *ssa.Block
    		if base.Flag.N == 0 && rtabi.UseInterfaceSwitchCache(Arch.LinkArch.Name) {
    			// Note: we can only use the cache if we have the right atomic load instruction.
    			// Double-check that here.
    			if _, ok := intrinsics[intrinsicKey{Arch.LinkArch.Arch, "internal/runtime/atomic", "Loadp"}]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    - The  new flag `etcd-ready-timeout` has been added. It configures a timeout of an additional etcd check performed as part of readyz check. ([#111399](https://github.com/kubernetes/kubernetes/pull/111399), [@Argh4k](https://github.com/Argh4k))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // be split has fully static shape and the dimension to split and split sizes
    // are constants.
    //
    // This is similar to the conversion for tf.Split op other than that the size of
    // each chunk on the dimension to split is explicitly given as an op operand
    // and they are not necessarily the same.
    //
    // For example, given the following IR:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top