Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for title_ (0.19 sec)

  1. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

     * factory classes like:
     *
     * <pre>
     * interface Book {...}
     * public class Books {
     *   public static Book hardcover(String title) {...}
     *   public static Book paperback(String title) {...}
     * }
     * </pre>
     *
     * <p>And all the created {@code Book} instances can be tested with:
     *
     * <pre>
     * new ClassSanityTester()
     *     .forAllPublicStaticMethods(Books.class)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

    
    @app.route('/metrics')
    def metrics():
        return generate_latest()
    
    
    # Data providers:
    def getProducts():
        return [
            {
                'id': 0,
                'title': 'The Comedy of Errors',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  3. docs/en/docs/tutorial/security/oauth2-jwt.md

    # OAuth2 with Password (and hashing), Bearer with JWT tokens
    
    Now that we have all the security flow, let's make the application actually secure, using <abbr title="JSON Web Tokens">JWT</abbr> tokens and secure password hashing.
    
    This code is something you can actually use in your application, save the password hashes in your database, etc.
    
    We are going to start from where we left in the previous chapter and increment it.
    
    ## About JWT
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            assertThat(task.classpath, sameCollection(project.layout.files(project.sourceSets.main.output, project.sourceSets.main.compileClasspath)))
            task.destinationDir == project.file("$project.docsDir/javadoc")
            task.title == project.extensions.getByType(ReportingExtension).apiDocTitle
    
            when:
            task = project.tasks["buildArchives"]
    
            then:
            task instanceof DefaultTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/math/big/float.go

    // If z's precision is 0, it is changed to the larger of x.BitLen()
    // or 64 (and rounding will have no effect).
    func (z *Float) SetInt(x *Int) *Float {
    	// TODO(gri) can be more efficient if z.prec > 0
    	// but small compared to the size of x, or if there
    	// are many trailing 0's.
    	bits := uint32(x.BitLen())
    	if z.prec == 0 {
    		z.prec = umax32(bits, 64)
    	}
    	z.acc = Exact
    	z.neg = x.neg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/conversion.go

    					hostAddresses = append(hostAddresses, &HostAddress{hostname, address})
    				} else if cidr, cidrErr := netip.ParsePrefix(address); cidrErr == nil {
    					newAddress := address
    					if cidr.Bits() == cidr.Addr().BitLen() {
    						// /32 mask. Remove the /32 and make it a normal IP address
    						newAddress = cidr.Addr().String()
    					}
    					hostAddresses = append(hostAddresses, &HostAddress{hostname, newAddress})
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/config.go

    	return &openapicommon.Config{
    		ProtocolList:   []string{"https"},
    		IgnorePrefixes: []string{},
    		Info: &spec.Info{
    			InfoProps: spec.InfoProps{
    				Title: "Generic API Server",
    			},
    		},
    		DefaultResponse: &spec.Response{
    			ResponseProps: spec.ResponseProps{
    				Description: "Default Response.",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  8. doc/godebug.md

    ---
    title: "Go, Backwards Compatibility, and GODEBUG"
    layout: article
    ---
    
    <!--
    This document is kept in the Go repo, not x/website,
    because it documents the full list of known GODEBUG settings,
    which are tied to a specific release.
    -->
    
    ## Introduction {#intro}
    
    Go's emphasis on backwards compatibility is one of its key strengths.
    There are, however, times when we cannot maintain complete compatibility.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server.go

    			c.sendAlert(alertBadCertificate)
    			return errors.New("tls: failed to parse client certificate: " + err.Error())
    		}
    		if certs[i].PublicKeyAlgorithm == x509.RSA {
    			n := certs[i].PublicKey.(*rsa.PublicKey).N.BitLen()
    			if max, ok := checkKeySize(n); !ok {
    				c.sendAlert(alertBadCertificate)
    				return fmt.Errorf("tls: client sent certificate containing RSA key larger than %d bits", max)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    	}
    
    	// Otherwise it is a raw IP. Make it a /32 or /128 depending on family
    	ipa, err := netip.ParseAddr(addr)
    	if err != nil {
    		return netip.Prefix{}, err
    	}
    
    	return netip.PrefixFrom(ipa, ipa.BitLen()), nil
    }
    
    // AddrStrToCidrRange converts from string to CIDR proto
    func AddrStrToCidrRange(addr string) (*core.CidrRange, error) {
    	prefix, err := AddrStrToPrefix(addr)
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top