Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for shtml (0.07 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    }
    
    // WebListData holds the data needed to generate HTML source code listing.
    type WebListData struct {
    	Total string
    	Files []WebListFile
    }
    
    // WebListFile holds the per-file information for HTML source code listing.
    type WebListFile struct {
    	Funcs []WebListFunc
    }
    
    // WebListFunc holds the per-function information for HTML source code listing.
    type WebListFunc struct {
    	Name       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * <p>Sets the dependencies of this task. See <a href="./Task.html#dependencies">here</a> for a description of the types of
         * objects which can be used as task dependencies.</p>
         *
         * @param dependsOnTasks The set of task paths.
         */
        void setDependsOn(Iterable<?> dependsOnTasks);
    
        /**
         * <p>Adds the given dependencies to this task. See <a href="./Task.html#dependencies">here</a> for a description of the types
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. cmd/signature-v4.go

    	return subtle.ConstantTimeCompare([]byte(sig1), []byte(sig2)) == 1
    }
    
    // doesPolicySignatureMatch - Verify query headers with post policy
    //   - http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-HTTPPOSTConstructPolicy.html
    //
    // returns ErrNone if the signature matches.
    func doesPolicySignatureV4Match(formValues http.Header) (auth.Credentials, APIErrorCode) {
    	// Server region.
    	region := globalSite.Region()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    ## Making your change
    
    ### Code change guidelines
    
    All code contributions should contain the following:
    
    * Create unit tests using [Spock](https://spockframework.org/spock/docs/2.0/index.html) for new classes or methods that you introduce.
    * Create integration tests that exercise a Gradle build for the bug/feature. 
    * Annotate tests that correspond to a bug on GitHub (`@Issue("https://github.com/gradle/gradle/issues/2622")`).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/productpage.py

    
    # The UI:
    @app.route('/')
    @app.route('/index.html')
    def index():
        """ Display productpage with normal user and test user buttons"""
        global productpage
    
        table = json2html.convert(json=json.dumps(productpage),
                                  table_attributes="class=\"table table-condensed table-bordered table-hover\"")
    
        return render_template('index.html', serviceTable=table)
    
    
    @app.route('/health')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  6. src/net/netip/netip.go

    		ip = ip.Unmap()
    	}
    
    	// Dynamic Configuration of IPv4 Link-Local Addresses
    	// https://datatracker.ietf.org/doc/html/rfc3927#section-2.1
    	if ip.Is4() {
    		return ip.v4(0) == 169 && ip.v4(1) == 254
    	}
    	// IP Version 6 Addressing Architecture (2.4 Address Type Identification)
    	// https://datatracker.ietf.org/doc/html/rfc4291#section-2.4
    	if ip.Is6() {
    		return ip.v6u16(0)&0xffc0 == 0xfe80
    	}
    	return false // zero value
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. doc/godebug.md

    serial numbers that are longer than 20 octets. This change can be reverted with
    the [`x509seriallength` setting](/pkg/crypto/x509/#ParseCertificate).
    
    Go 1.23 re-enabled support in html/template for ECMAScript 6 template literals by default.
    The [`jstmpllitinterp` setting](/pkg/html/template#hdr-Security_Model) no longer has
    any effect.
    
    Go 1.23 changed the default TLS cipher suites used by clients and servers when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

            succeeds("defaultTask")
        }
    
        def canAddMixInsToCoreDomainObjects() {
    
            buildFile '''
                class Extension { def doStuff() { 'method' } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. src/go/types/issues_test.go

    	// All involved packages have the same name (template). Error messages should
    	// disambiguate between text/template and html/template by printing the full
    	// path.
    	const (
    		asrc = `package a; import "text/template"; func F(template.Template) {}; func G(int) {}`
    		bsrc = `
    package b
    
    import (
    	"a"
    	"html/template"
    )
    
    func _() {
    	// Packages should be fully qualified when there is ambiguity within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/net/http/cookie.go

    	"strconv"
    	"strings"
    	"time"
    )
    
    // A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
    // HTTP response or the Cookie header of an HTTP request.
    //
    // See https://tools.ietf.org/html/rfc6265 for details.
    type Cookie struct {
    	Name   string
    	Value  string
    	Quoted bool // indicates whether the Value was originally quoted
    
    	Path       string    // optional
    	Domain     string    // optional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top