Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for minLen (0.1 sec)

  1. operator/pkg/util/yaml.go

    }
    
    func diffStringList(l1, l2 []string) string {
    	var maxLen int
    	var minLen int
    	var l1Max bool
    	res := ""
    	if len(l1)-len(l2) > 0 {
    		maxLen = len(l1)
    		minLen = len(l2)
    		l1Max = true
    	} else {
    		maxLen = len(l2)
    		minLen = len(l1)
    		l1Max = false
    	}
    
    	for i := 0; i < maxLen; i++ {
    		d := ""
    		if i >= minLen {
    			if l1Max {
    				d = yamlDiff(l1[i], "")
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/sets/set_test.go

    		}
    	}
    }
    
    type randomStringAlphabet string
    
    func (a randomStringAlphabet) makeString(minLen, maxLen int) string {
    	n := minLen
    	if minLen < maxLen {
    		n += rand.Intn(maxLen - minLen)
    	}
    	var s string
    	for i := 0; i < n; i++ {
    		s += string(a[rand.Intn(len(a))])
    	}
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. src/runtime/memmove_test.go

    	}
    
    	for _, t := range benchSizes {
    		total := 0
    		minLen := 0
    		maxLen := 0
    
    		for _, clrLen := range t.data {
    			maxLen = max(maxLen, clrLen)
    			if clrLen < minLen || minLen == 0 {
    				minLen = clrLen
    			}
    			total += clrLen
    		}
    		buffer := make([]byte, maxLen)
    
    		text := ""
    		if minLen >= (1 << 20) {
    			text = fmt.Sprint(minLen>>20, "M ", (maxLen+(1<<20-1))>>20, "M")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	if edge.Residual {
    		attr = attr + ` style="dotted"`
    	}
    
    	if hasNodelets {
    		// Separate children further if source has tags.
    		attr = attr + " minlen=2"
    	}
    
    	fmt.Fprintf(b, "N%d -> N%d [%s]\n", from, to, attr)
    }
    
    // dotColor returns a color for the given score (between -1.0 and
    // 1.0), with -1.0 colored green, 0.0 colored grey, and 1.0 colored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/hu/stopwords.txt

    legyen
    lenne
    lenni
    lesz
    lett
    maga
    magát
    majd
    majd
    már
    más
    másik
    meg
    még
    mellett
    mert
    mely
    melyek
    mi
    mit
    míg
    miért
    milyen
    mikor
    minden
    mindent
    mindenki
    mindig
    mint
    mintha
    mivel
    most
    nagy
    nagyobb
    nagyon
    ne
    néha
    nekem
    neki
    nem
    néhány
    nélkül
    nincs
    olyan
    ott
    össze
    ő
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java

        public void initialize(final CustomSize constraintAnnotation) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String minKey = constraintAnnotation.minKey();
            if (StringUtil.isNotBlank(minKey)) {
                min = Integer.parseInt(fessConfig.get(minKey));
            }
            final String maxKey = constraintAnnotation.maxKey();
            if (StringUtil.isNotBlank(maxKey)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/runtime/os_freebsd.go

    	oid := [2]uint32{_CTL_QUERY, _CTL_QUERY_MIB}
    	miblen := uintptr(_CTL_MAXNAME)
    	if sysctl(&oid[0], 2, (*byte)(unsafe.Pointer(mib)), &miblen, (*byte)(unsafe.Pointer(&name[0])), (uintptr)(len(name))) < 0 {
    		return 0
    	}
    	miblen /= unsafe.Sizeof(uint32(0))
    	if miblen <= 0 {
    		return 0
    	}
    	return uint32(miblen)
    }
    
    const (
    	_CPU_CURRENT_PID = -1 // Current process ID.
    )
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. docs/de/docs/alternatives.md

        Hat eindeutig Uvicorn und Starlette inspiriert, welche derzeit in offenen Benchmarks schneller als Sanic sind.
    
    !!! check "Inspirierte **FastAPI**"
        Einen Weg zu finden, eine hervorragende Performanz zu haben.
    
        Aus diesem Grund basiert **FastAPI** auf Starlette, da dieses das schnellste verfügbare Framework ist (getestet in Benchmarks von Dritten).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/static-files.md

    Das `name="static"` gibt dieser Unteranwendung einen Namen, der intern von **FastAPI** verwendet werden kann.
    
    Alle diese Parameter können anders als "`static`" lauten, passen Sie sie an die Bedürfnisse und spezifischen Details Ihrer eigenen Anwendung an.
    
    ## Weitere Informationen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. docs/de/docs/help-fastapi.md

    ## Einen Pull Request erstellen
    
    Sie können zum Quellcode mit Pull Requests [beitragen](contributing.md){.internal-link target=_blank}, zum Beispiel:
    
    * Um einen Tippfehler zu beheben, den Sie in der Dokumentation gefunden haben.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top