Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for resMatch (0.2 sec)

  1. src/regexp/testdata/testregex.c

     * help:	testregex --man
     * note:	REG_* features are detected by #ifdef; if REG_* are enums
     *		then supply #define REG_foo REG_foo for each enum REG_foo
     *
     *	Glenn Fowler <gsf@research.att.com>
     *	AT&T Research
     *
     * PLEASE: publish your tests so everyone can benefit
     *
     * The following license covers testregex.c and all associated test data.
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

            "//waymo/ml/compiler/mlir/...",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server/...",
            "//research/language_modeling/sentence_explorer/ondevice/...",
            "//learning/brain/research/babelfish/inference/speech_tflite/mlir/...",
        ],
    )
    
    td_library(
        name = "tensorflow_lite_ops_td_files",
        srcs = [
            "ir/tfl_op_enums.td",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. cmd/batch-handlers.go

    	jobType := r.Form.Get("jobType")
    	if jobType == "" {
    		jobType = string(madmin.BatchJobReplicate)
    	}
    
    	resultCh := make(chan itemOrErr[ObjectInfo])
    
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    
    	if err := objectAPI.Walk(ctx, minioMetaBucket, batchJobPrefix, resultCh, WalkOptions{}); err != nil {
    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	//    from w2 ResultCh it could have happened that its buffer was also
    	//    filling in and given we no longer had timeBudget (consumed in (1))
    	//    trying to put next item was simply breaking the watch
    	// Using fakeTimeBudget gives us always a budget to wait and have a test
    	// pick up something from ResultCh in the meantime.
    	cacher.dispatchTimeoutBudget = &fakeTimeBudget{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    	// whole checksums for many years now, no need to allocate.
    
    	fi.Metadata = make(map[string]string, len(j.MetaUser)+len(j.MetaSys))
    	for k, v := range j.MetaUser {
    		// https://github.com/google/security-research/security/advisories/GHSA-76wf-9vgp-pj7w
    		if equals(k, xhttp.AmzMetaUnencryptedContentLength, xhttp.AmzMetaUnencryptedContentMD5) {
    			continue
    		}
    		if equals(k, "x-amz-storage-class") && v == storageclass.STANDARD {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top