Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for Sizes (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

        override fun close() {
          if (closed) return
          closed = true
          detachTimeout(timeout)
          state = STATE_READ_RESPONSE_HEADERS
        }
      }
    
      /**
       * An HTTP body with alternating chunk sizes and chunk bodies. It is the caller's responsibility
       * to buffer chunks; typically by using a buffered sink with this sink.
       */
      private inner class ChunkedSink : Sink {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

          // side_input_scale and not relevant in this case.
          auto sizes = mlir::DenseI32ArrayAttr::get(context, {1, 1, 1, 0});
          auto attr_name =
              StringAttr::get(context, mlir::OpTrait::AttrSizedOperandSegments<
                                           void>::getOperandSegmentSizeAttr());
          attrs.push_back(NamedAttribute(attr_name, sizes));
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    	// length in octets of the RSA modulus n." 🙄
    	//
    	// This is extremely annoying, as all other encrypt and decrypt inputs are
    	// always the exact same size as the modulus. Since it only happens for
    	// weird modulus sizes, fix it by padding inefficiently.
    	if emLen, k := len(em), priv.Size(); emLen < k {
    		emNew := make([]byte, k)
    		copy(emNew[k-emLen:], em)
    		em = emNew
    	}
    
    	return decrypt(priv, em, withCheck)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/mmu.go

    // utilization distribution for that window size.
    //
    // Render plot progressively so rough outline is visible quickly even
    // for very complex MUTs. Start by computing just a few window sizes
    // and then add more window sizes.
    //
    // Consider using sampling to compute an approximate MUT. This would
    // work by sampling the mutator utilization at randomly selected
    // points in time in the trace to build an empirical distribution. We
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/math/big/nat_test.go

    			for i := 0; i < b.N; i++ {
    				n.setBytes(buf[:l])
    			}
    		})
    	}
    }
    
    func TestNatDiv(t *testing.T) {
    	sizes := []int{
    		1, 2, 5, 8, 15, 25, 40, 65, 100,
    		200, 500, 800, 1500, 2500, 4000, 6500, 10000,
    	}
    	for _, i := range sizes {
    		for _, j := range sizes {
    			a := rndNat1(i)
    			b := rndNat1(j)
    			// the test requires b >= 2
    			if len(b) == 1 && b[0] == 1 {
    				b[0] = 2
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    				// report parse errors.
    				err = nil
    			}
    			return nil, err
    		}
    		files = append(files, f)
    	}
    	tc := &types.Config{
    		Importer:  makeTypesImporter(cfg, fset),
    		Sizes:     types.SizesFor("gc", build.Default.GOARCH), // TODO(adonovan): use cfg.Compiler
    		GoVersion: cfg.GoVersion,
    	}
    	info := &types.Info{
    		Types:      make(map[ast.Expr]types.TypeAndValue),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    	exactSize := func(size int) checker.SizeEstimate {
    		return checker.SizeEstimate{Min: uint64(size), Max: uint64(size)}
    	}
    	exactSizes := func(sizes ...int) []checker.SizeEstimate {
    		results := make([]checker.SizeEstimate, len(sizes))
    		for i, size := range sizes {
    			results[i] = exactSize(size)
    		}
    		return results
    	}
    	cases := []struct {
    		name       string
    		function   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_ppc64x.s

    	VCIPHER		V0, V1, V1
    	VCIPHERLAST	V1, V2, V2
    
    	// Store the result in BE order.
    	P8_STXVB16X(V2, R3, R0)
    	RET
    
    Linvalid_key_len:
    	// Segfault, this should never happen. Only 3 keys sizes are created/used.
    	MOVD	R0, 0(R0)
    	RET
    
    // func decryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    TEXT ·decryptBlockAsm(SB), NOSPLIT|NOFRAME, $0
    	MOVD	nr+0(FP), R6   // Round count/Key size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/crypto/cipher/gcm.go

    	return newGCMWithNonceAndTagSize(cipher, size, gcmTagSize)
    }
    
    // NewGCMWithTagSize returns the given 128-bit, block cipher wrapped in Galois
    // Counter Mode, which generates tags with the given length.
    //
    // Tag sizes between 12 and 16 bytes are allowed.
    //
    // Only use this function if you require compatibility with an existing
    // cryptosystem that uses non-standard tag lengths. All other users should use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Converts tensor list operations into operations on buffers and sizes. Needs
    // static shapes and known max element count.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTensorListOpsDecompositionPass();
    
    // Converts tensor array ops into operations on local variables, which can later
    // be removed by resource lifting. Requires known sizes and known element shapes
    // (either defined in TensorArrayV3 or implied in the first write).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top