Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Suffix (0.1 sec)

  1. src/index/suffixarray/sais2.go

    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    		expand_8_64(text, freq, bucket, sa, numLMS)
    	}
    	induceL_8_64(text, sa, freq, bucket)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			t.Errorf("%s: error: %v", test.input, err)
    			continue
    		}
    		if positive != test.positive || value != test.value || num != test.num || denom != test.denom || suffix != test.suffix {
    			t.Errorf("%s: unmatched: %t %q %q %q %q", test.input, positive, value, num, denom, suffix)
    		}
    	}
    }
    
    func TestQuantityParse(t *testing.T) {
    	if _, err := ParseQuantity(""); err == nil {
    		t.Errorf("expected empty string to return error")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    # Add notification configuration on the `images` bucket using the MySQL ARN. The --suffix argument filters events.
    mc event add myminio/images arn:minio:sqs::1:postgresql --suffix .jpg
    # Print out the notification configuration on the `images` bucket.
    mc event list myminio/images
    mc event list myminio/images
    arn:minio:sqs::1:postgresql s3:ObjectCreated:*,s3:ObjectRemoved:* Filter: suffix=”.jpg”
    ```
    
    ### Step 4: Test on PostgreSQL
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			i++
    		}
    	}
    	for len(st.str) > i+1 && st.str[i] == '.' && isDigit(st.str[i+1]) {
    		i += 2
    		for len(st.str) > i && isDigit(st.str[i]) {
    			i++
    		}
    	}
    	suffix := st.str[:i]
    	st.advance(i)
    	return &Clone{Base: a, Suffix: suffix}
    }
    
    // substitutions is the list of substitution candidates that may
    // appear later in the string.
    type substitutions []AST
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. src/time/format.go

    		hour  int = -1
    		min   int
    		sec   int
    	)
    
    	// Each iteration generates one std value.
    	for layout != "" {
    		prefix, std, suffix := nextStdChunk(layout)
    		if prefix != "" {
    			b = append(b, prefix...)
    		}
    		if std == 0 {
    			break
    		}
    		layout = suffix
    
    		// Compute year, month, day if needed.
    		if year < 0 && std&stdNeedDate != 0 {
    			year, month, day, yday = absDate(abs, true)
    			yday++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    		if err != nil || srcPath == srcRoot {
    			return err
    		}
    
    		suffix := strings.TrimPrefix(srcPath, srcRoot)
    		for len(suffix) > 0 && suffix[0] == filepath.Separator {
    			suffix = suffix[1:]
    		}
    		dstPath := filepath.Join(dstRoot, suffix)
    
    		var info fs.FileInfo
    		if d.Type()&os.ModeSymlink != 0 {
    			info, err = os.Stat(srcPath)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      for (Node* n : graph->nodes()) {
        if (absl::EndsWith(n->name(), /*suffix=*/"cpu")) {
          n->set_assigned_device_name(string(xla_cpu_dev0));
        } else if (absl::EndsWith(n->name(), /*suffix=*/"dev0")) {
          n->set_assigned_device_name(string(xla_gpu_dev0));
        } else if (absl::EndsWith(n->name(), /*suffix=*/"dev1")) {
          n->set_assigned_device_name(string(xla_gpu_dev1));
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	}
    
    	var pkgtargetroot string
    	var pkga string
    	var pkgerr error
    	suffix := ""
    	if ctxt.InstallSuffix != "" {
    		suffix = "_" + ctxt.InstallSuffix
    	}
    	switch ctxt.Compiler {
    	case "gccgo":
    		pkgtargetroot = "pkg/gccgo_" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    	case "gc":
    		pkgtargetroot = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    	default:
    		// Save error for end of function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    	}
    	ts := newClientServerTest(t, mode, StripPrefix("/bar/", FileServer(Dir(tempDir)))).ts
    	get := func(suffix string) string {
    		res, err := ts.Client().Get(ts.URL + suffix)
    		if err != nil {
    			t.Fatalf("Get %s: %v", suffix, err)
    		}
    		b, err := io.ReadAll(res.Body)
    		if err != nil {
    			t.Fatalf("ReadAll %s: %v", suffix, err)
    		}
    		res.Body.Close()
    		return string(b)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    			// Construct factored form: prefix(suffix1|suffix2|...)
    			prefix := first
    			for j := start; j < i; j++ {
    				reuse := j != start // prefix came from sub[start]
    				sub[j] = p.removeLeadingRegexp(sub[j], reuse)
    				p.checkLimits(sub[j])
    			}
    			suffix := p.collapse(sub[start:i], OpAlternate) // recurse
    
    			re := p.newRegexp(OpConcat)
    			re.Sub = append(re.Sub[:0], prefix, suffix)
    			out = append(out, re)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top