Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for predefined (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_PASSES_TESTING_PASSES_H_
    
    #include "mlir/Pass/Pass.h"  // from @llvm-project  // IWYU pragma: keep
    
    namespace mlir::quant::stablehlo::testing {
    
    // Identifies predefined `QuantizationSpecs` for
    // `TestLiftQuantizableSpotsAsFunctionsWithQuantizationSpecsPass`. The pass
    // option argument is specified in line comments for each enum value.
    enum class TestQuantizationSpecs {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/proxy/util/nfacct/nfacct_linux_test.go

    }
    
    // newRequest creates a request object with the given cmd, flags, predefined response and error.
    // It additionally records the created request object.
    func (fh *fakeHandler) newRequest(cmd int, flags uint16) request {
    	var response [][]byte
    	if fh.responses != nil && len(fh.responses) > 0 {
    		response = fh.responses[0]
    		// remove the response from the list of predefined responses and add it to request object for mocking.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/path-params.md

    Similarly, you cannot redefine a path operation:
    
    ```Python hl_lines="6  11"
    {!../../../docs_src/path_params/tutorial003b.py!}
    ```
    
    The first one will always be used since the path matches first.
    
    ## Predefined values
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. hack/make-rules/update.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A single script that runs a predefined set of update-* scripts, as they often go together.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SILENT=${SILENT:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/registry/key.go

    )
    
    // Key is a handle to an open Windows registry key.
    // Keys can be obtained by calling OpenKey; there are
    // also some predefined root keys such as CURRENT_USER.
    // Keys can be used directly in the Windows API.
    type Key syscall.Handle
    
    const (
    	// Windows defines some predefined root keys that are always open.
    	// An application can use these keys as entry points to the registry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Files.java

       *
       * @param file the file to read from
       * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for
       *     helpful predefined constants
       * @return the buffered reader
       */
      public static BufferedReader newReader(File file, Charset charset) throws FileNotFoundException {
        checkNotNull(file);
        checkNotNull(charset);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/stripmeta.go

    	if err != nil {
    		return nil, nil, err
    	}
    	f.stripFields(managed.Fields(), manager)
    	return newObj, managed, nil
    }
    
    // stripFields removes a predefined set of paths found in typed from managed
    func (f *stripMetaManager) stripFields(managed fieldpath.ManagedFields, manager string) {
    	vs, ok := managed[manager]
    	if ok {
    		if vs == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/internal/zstd/fse.go

    			basebits := matchLengthBase[idx]
    			be.baseline = basebits & 0xffffff
    			be.basebits = uint8(basebits >> 24)
    		}
    		baselineTable[i] = be
    	}
    	return nil
    }
    
    // predefinedLiteralTable is the predefined table to use for literal lengths.
    // Generated from table in RFC 3.1.1.3.2.2.1.
    // Checked by TestPredefinedTables.
    var predefinedLiteralTable = [...]fseBaselineEntry{
    	{0, 0, 4, 0}, {0, 0, 4, 16}, {1, 0, 5, 32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. pkg/apis/scheduling/validation/validation.go

    	allErrs = append(allErrs, apivalidation.ValidateObjectMeta(&pc.ObjectMeta, false, apimachineryvalidation.NameIsDNSSubdomain, field.NewPath("metadata"))...)
    	// If the priorityClass starts with a system prefix, it must be one of the
    	// predefined system priority classes.
    	if strings.HasPrefix(pc.Name, scheduling.SystemPriorityClassPrefix) {
    		if is, err := schedulingapiv1.IsKnownSystemPriorityClass(pc.Name, pc.Value, pc.GlobalDefault); !is {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/flags/flags.go

    }
    
    var (
    	D        MultiFlag
    	I        MultiFlag
    	PrintOut int
    	DebugV   bool
    )
    
    func init() {
    	flag.Var(&D, "D", "predefined symbol with optional simple value -D=identifier=value; can be set multiple times")
    	flag.Var(&I, "I", "include directory; can be set multiple times")
    	flag.BoolVar(&DebugV, "v", false, "print debug output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top