Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for spring (0.16 sec)

  1. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/res/values/strings.xml

    <resources>
        <string name="app_name">My First App</string>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 75 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/values/strings.xml

    <resources>
        <string name="app_name">My First App</string>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 75 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/values/strings.xml

    <resources>
        <string name="app_name">Kotlin DSL Android Studio Sample</string>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 95 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	if !ok {
    		ln.Close()
    		return nil, 0, fmt.Errorf("invalid listen address: %q", ln.Addr().String())
    	}
    
    	return ln, tcpAddr.Port, nil
    }
    
    type multipleControls []func(network, addr string, conn syscall.RawConn) error
    
    func (mcs multipleControls) Control(network, addr string, conn syscall.RawConn) error {
    	for _, c := range mcs {
    		if err := c(network, addr, conn); err != nil {
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/crypto/x509/boring.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    package x509
    
    import (
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/internal/boring/fipstls"
    	"crypto/rsa"
    )
    
    // boringAllowCert reports whether c is allowed to be used
    // in a certificate chain by the current fipstls enforcement setting.
    // It is called for each leaf, intermediate, and root certificate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 993 bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    const invalidScore = -1
    
    // preScoreState computed at PreScore and used at Score.
    // Fields are exported for comparison during testing.
    type preScoreState struct {
    	Constraints []topologySpreadConstraint
    	// IgnoredNodes is a set of node names which miss some Constraints[*].topologyKey.
    	IgnoredNodes sets.Set[string]
    	// TopologyPairToPodCounts is keyed with topologyPair, and valued with the number of matching pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. src/fmt/print.go

    func Printf(format string, a ...any) (n int, err error) {
    	return Fprintf(os.Stdout, format, a...)
    }
    
    // Sprintf formats according to a format specifier and returns the resulting string.
    func Sprintf(format string, a ...any) string {
    	p := newPrinter()
    	p.doPrintf(format, a)
    	s := string(p.buf)
    	p.free()
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. src/go/doc/comment/print.go

    	DocLinkBaseURL string
    
    	// TextPrefix is a prefix to print at the start of every line
    	// when generating text output using the Text method.
    	TextPrefix string
    
    	// TextCodePrefix is the prefix to print at the start of each
    	// preformatted (code block) line when generating text output,
    	// instead of (not in addition to) TextPrefix.
    	// If TextCodePrefix is the empty string, it defaults to TextPrefix+"\t".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. src/net/http/internal/ascii/print.go

    		return b + ('a' - 'A')
    	}
    	return b
    }
    
    // IsPrint returns whether s is ASCII and printable according to
    // https://tools.ietf.org/html/rfc20#section-4.2.
    func IsPrint(s string) bool {
    	for i := 0; i < len(s); i++ {
    		if s[i] < ' ' || s[i] > '~' {
    			return false
    		}
    	}
    	return true
    }
    
    // Is returns whether s is ASCII.
    func Is(s string) bool {
    	for i := 0; i < len(s); i++ {
    		if s[i] > unicode.MaxASCII {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/groovy/gnupg-home/secring.gpg

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top