Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 150 for Sizes (0.05 sec)

  1. src/crypto/internal/boring/goboringcrypto.h

    // having a full set of BoringCrypto headers), the struct details are not here.
    // Instead, while building the syso, we compile and run a C++ program
    // that checks that the sizes match. The program also checks (during compilation)
    // that all the function prototypes match the BoringCrypto equivalents.
    // The generation of the checking program depends on the declaration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

          return false;
        }
        val2_result *= val2_shape.getDimSize(idx);
      }
    
      return val1_result == val2_result;
    }
    
    // Checks if a shape has dim sizes of all ones except the right most dim.
    bool ReshapableTo1DTensor(ShapedType rhs_shape) {
      for (auto rank = 0; rank < rhs_shape.getRank() - 1; rank++) {
        if (rhs_shape.getDimSize(rank) != 1) {
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. internal/event/target/mysql.go

    	"github.com/minio/minio/internal/once"
    	"github.com/minio/minio/internal/store"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    const (
    	mysqlTableExists = `SELECT 1 FROM %s;`
    	// Some MySQL has a 3072 byte limit on key sizes.
    	mysqlCreateNamespaceTable = `CREATE TABLE %s (
                 key_name VARCHAR(3072) NOT NULL,
                 key_hash CHAR(64) GENERATED ALWAYS AS (SHA2(key_name, 256)) STORED NOT NULL PRIMARY KEY,
                 value JSON)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.cc

    }
    
    // Restores the collapsed dimensions to the `tensor_type`. `collapsed_dims`
    // designate the dimension indices that were collapsed to produce `tensor_type`.
    // The restored dimensions' sizes are 1, according to the semantics of
    // `XlaGatherOp (https://www.tensorflow.org/xla/operation_semantics#gather). The
    // resulting type's shape has `tensor_type.size() + collapsed_dims.size()`
    // dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadmacho/ldmacho.go

    				bld.SetType(sym.SNOPTRBSS)
    				bld.SetData(nil)
    			} else {
    				bld.SetType(sym.SNOPTRDATA)
    			}
    		}
    
    		sect.sym = s
    	}
    
    	// enter sub-symbols into symbol table.
    	// have to guess sizes from next symbol.
    	for i := uint32(0); i < symtab.nsym; i++ {
    		machsym := &symtab.sym[i]
    		if machsym.type_&N_STAB != 0 {
    			continue
    		}
    
    		// TODO: check sym->type against outer->type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  6. pkg/controller/deployment/sync.go

    	}
    	return createdRS, err
    }
    
    // scale scales proportionally in order to mitigate risk. Otherwise, scaling up can increase the size
    // of the new replica set and scaling down can decrease the sizes of the old ones, both of which would
    // have the effect of hastening the rollout progress, which could produce a higher proportion of unavailable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

            break
          }
        }
      }
      return result.toTypedArray()
    }
    
    /**
     * Returns true if there is an element in this array that is also in [other]. This method terminates
     * if any intersection is found. The sizes of both arguments are assumed to be so small, and the
     * likelihood of an intersection so great, that it is not worth the CPU cost of sorting or the
     * memory cost of hashing.
     */
    internal fun Array<String>.hasIntersection(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/debug/dwarf/type.go

    	}
    	for _, t := range tf.arraytypes {
    		zeroArray(t)
    	}
    }
    
    // readType reads a type from r at off of name. It adds types to the
    // type cache, appends new typedef types to typedefs, and computes the
    // sizes of types. Callers should pass nil for typedefs; this is used
    // for internal recursion.
    func (d *Data) readType(name string, r typeReader, off Offset, typeCache map[Offset]Type, fixups *typeFixer) (Type, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  9. src/runtime/memmove_test.go

    							t.Fatalf("got partially updated pointer %p at dst[%d], want either nil or %p", p, i, &x)
    						}
    					}
    				}
    			})
    		}
    	}
    }
    
    func benchmarkSizes(b *testing.B, sizes []int, fn func(b *testing.B, n int)) {
    	for _, n := range sizes {
    		b.Run(fmt.Sprint(n), func(b *testing.B) {
    			b.SetBytes(int64(n))
    			fn(b, n)
    		})
    	}
    }
    
    var bufSizes = []int{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/aes.go

    	cipher.Block
    }
    
    func (c *aesCipher) NewGCM(nonceSize, tagSize int) (cipher.AEAD, error) {
    	if nonceSize != gcmStandardNonceSize && tagSize != gcmTagSize {
    		return nil, errors.New("crypto/aes: GCM tag and nonce sizes can't be non-standard at the same time")
    	}
    	// Fall back to standard library for GCM with non-standard nonce or tag size.
    	if nonceSize != gcmStandardNonceSize {
    		return cipher.NewGCMWithNonceSize(&noGCM{c}, nonceSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top