Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 288 for mentioned (0.16 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

        // we rule out characters that would cause problems in host headers.
        if (c <= '\u001f' || c >= '\u007f') {
          return true
        }
        // Check for the characters mentioned in the WHATWG Host parsing spec:
        // U+0000, U+0009, U+000A, U+000D, U+0020, "#", "%", "/", ":", "?", "@", "[", "\", and "]"
        // (excluding the characters covered above).
        if (" #%/:?@[\\]".indexOf(c) != -1) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_setup.adoc

    [[sec:basic_publishing]]
    == Setting up basic publishing
    
    The first step in publishing, irrespective of your project type, is to apply the appropriate publishing plugin. As mentioned in the introduction, Gradle supports both Maven and Ivy repositories via the following plugins:
    
    * <<publishing_maven.adoc#publishing_maven,Maven Publish Plugin>>
    * <<publishing_ivy.adoc#publishing_ivy,Ivy Publish Plugin>>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #       within the Gradle project.
    #<% /*
    #       ... and if you're reading this, this IS the template just mentioned.
    #
    #       This template is processed by
    #       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/UnixStartScriptGenerator.java
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/image/color/ycbcr.go

    	// method, below, the output is 16 bit color, ranging in [0x0000, 0xffff].
    	// Outputting 16 bit color simply requires changing the 16 to 8 in the "R =
    	// etc >> 16" equation, and likewise for G and B.
    	//
    	// As mentioned above, a constant rounding adjustment of 1<<15 is a natural
    	// choice, but there is an additional constraint: if c0 := YCbCr{Y: y, Cb:
    	// 0x80, Cr: 0x80} and c1 := Gray{Y: y} then c0.RGBA() should equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/clean/clean.go

    	CmdClean.Flag.BoolVar(&cleanModcache, "modcache", false, "")
    	CmdClean.Flag.BoolVar(&cleanTestcache, "testcache", false, "")
    
    	// -n and -x are important enough to be
    	// mentioned explicitly in the docs but they
    	// are part of the build flags.
    
    	work.AddBuildFlags(CmdClean, work.DefaultBuildFlags)
    }
    
    func runClean(ctx context.Context, cmd *base.Command, args []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. samples/bookinfo/README.md

    ```
    
    You should see the following in the browser.
    
    ![star](https://user-images.githubusercontent.com/2920003/86032538-212ff900-ba55-11ea-9492-d4bc90656a02.png)
    
    **Note**: If everything works as mentioned above, request a new official set of images be built and pushed from the reviewer, and add another commit to the original PR with the version changes.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. src/math/j0.go

    //      2. For x>=2.
    //              y0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)+q0(x)*sin(x0))
    //         where x0 = x-pi/4. It is better to compute sin(x0),cos(x0)
    //         by the method mentioned above.
    //      3. Special cases: y0(0)=-inf, y0(x<0)=NaN, y0(inf)=0.
    //
    
    // J0 returns the order-zero Bessel function of the first kind.
    //
    // Special cases are:
    //
    //	J0(±Inf) = 0
    //	J0(0) = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  8. pkg/wasm/imagefetcher.go

    	r, err := layer.Compressed()
    	if err != nil {
    		return nil, fmt.Errorf("could not get layer content: %v", err)
    	}
    	defer r.Close()
    
    	// Just read it since the content is already a raw Wasm binary as mentioned above.
    	ret, err := io.ReadAll(r)
    	if err != nil {
    		return nil, fmt.Errorf("could not extract wasm binary: %v", err)
    	}
    	return ret, nil
    }
    
    type wasmKeyChain struct {
    	data []byte
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. src/math/j1.go

    //      3. For x>=2.
    //               y1(x) = sqrt(2/(pi*x))*(p1(x)*sin(x1)+q1(x)*cos(x1))
    //         where x1 = x-3*pi/4. It is better to compute sin(x1),cos(x1)
    //         by method mentioned above.
    
    // J1 returns the order-one Bessel function of the first kind.
    //
    // Special cases are:
    //
    //	J1(±Inf) = 0
    //	J1(NaN) = NaN
    func J1(x float64) float64 {
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	}
    	defer f.Close()
    	data, err := io.ReadAll(f)
    	if err != nil {
    		return nil, err
    	}
    	in := string(data)
    	doc := NewParser().Parse(in)
    	return doc, nil
    }
    
    // An APIFeature is a symbol mentioned in an API file,
    // like the ones in the main go repo in the api directory.
    type APIFeature struct {
    	Package string // package that the feature is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top