Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for chunck (0.26 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. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

    list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

    list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.20.md

    - Kubeadm: allow the "certs check-expiration" command to not require the existence of the cluster CA key (ca.key file) when checking the expiration of managed certificates in kubeconfig files. ([#106927](https://github.com/kubernetes/kubernetes/pull/106927), [@neolit123](https://github.com/neolit123)) [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)
Back to top