Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 470 for spacer (0.26 sec)

  1. src/cmd/cgo/internal/test/callback_c.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <string.h>
    
    #include "_cgo_export.h"
    
    void
    callback(void *f)
    {
    	// use some stack space
    	volatile char data[64*1024];
    
    	data[0] = 0;
    	goCallback(f);
            data[sizeof(data)-1] = 0;
    }
    
    void
    callGoFoo(void)
    {
    	extern void goFoo(void);
    	goFoo();
    }
    
    void
    IntoC(void)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 933 bytes
    - Viewed (0)
  2. src/image/jpeg/dct_test.go

    //
    //	dst[u,v] = (1/8) * Σ_x Σ_y alpha(u) * alpha(v) * src[x,y] *
    //		cos((π/2) * (2*x + 1) * u / 8) *
    //		cos((π/2) * (2*y + 1) * v / 8)
    //
    // x and y are in pixel space, and u and v are in transform space.
    //
    // b acts as both dst and src.
    func slowFDCT(b *block) {
    	var dst [blockSize]float64
    	for v := 0; v < 8; v++ {
    		for u := 0; u < 8; u++ {
    			sum := 0.0
    			for y := 0; y < 8; y++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  3. samples/kind-lb/setupkind.sh

    function printHelp() {
      echo "Usage: "
      echo "    $0 --cluster-name cluster1 --k8s-release 1.22.1 --ip-space 255"
      echo ""
      echo "Where:"
      echo "    -n|--cluster-name  - name of the k8s cluster to be created"
      echo "    -r|--k8s-release   - the release of the k8s to setup, latest available if not given"
      echo "    -s|--ip-space      - the 2nd to the last part for public ip addresses, 255 if not given, valid range: 0-255."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/html/template/css.go

    			j := 2
    			for j < len(s) && j < 7 && isHex(s[j]) {
    				j++
    			}
    			r := hexDecode(s[1:j])
    			if r > unicode.MaxRune {
    				r, j = r/16, j-1
    			}
    			n := utf8.EncodeRune(b[len(b):cap(b)], r)
    			// The optional space at the end allows a hex
    			// sequence to be followed by a literal hex.
    			// string(decodeCSS([]byte(`\A B`))) == "\nB"
    			b, s = b[:len(b)+n], skipCSSSpace(s[j:])
    		} else {
    			// `\\` decodes to `\` and `\"` to `"`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    //
    // For programs in the Go toolchain, the program version will be the same as
    // the Go version, and will typically be of the form "go1.2.3", not a semantic
    // version of the form "v1.2.3". Go versions may also include spaces and
    // special characters.
    func ProgramInfo(info *debug.BuildInfo) (goVers, progPath, progVers string) {
    	goVers = info.GoVersion
    	if strings.Contains(goVers, "devel") || strings.Contains(goVers, "-") {
    		goVers = "devel"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainResolverRegistry.java

     */
    @Incubating
    @HasInternalProtocol
    public interface JavaToolchainResolverRegistry {
    
        /**
         * Registers a <code>JavaToolchainResolver</code> implementation. The class name should be properly
         * name-spaced, to avoid collisions (if another resolver class with the same fully qualified name
         * is registered, a <code>GradleException</code> will be thrown).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/dependencies/global-dependencies.md

    ## Abhängigkeiten für Gruppen von *Pfadoperationen*
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc_32bit.go

    // wasm is a treated as a 32-bit architecture for the purposes of the page
    // allocator, even though it has 64-bit pointers. This is because any wasm
    // pointer always has its top 32 bits as zero, so the effective heap address
    // space is only 2^32 bytes in size (see heapAddrBits).
    
    package runtime
    
    import (
    	"unsafe"
    )
    
    const (
    	// The number of levels in the radix tree.
    	summaryLevels = 4
    
    	// Constants for testing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestDirectoryProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.file;
    
    /**
     * Implementations provide a working space to be used in tests.
     *
     * The client is not responsible for removing any files.
     */
    public interface TestDirectoryProvider {
    
        /**
         * The directory to use, guaranteed to exist.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. src/cmd/internal/pgo/serialize_test.go

    		caller, ok := consumeString()
    		if !ok {
    			break
    		}
    		if strings.ContainsAny(caller, " \r\n") {
    			t.Skip("caller contains space or newline")
    		}
    
    		callee, ok := consumeString()
    		if !ok {
    			break
    		}
    		if strings.ContainsAny(callee, " \r\n") {
    			t.Skip("callee contains space or newline")
    		}
    
    		line, ok := consumeInt64()
    		if !ok {
    			break
    		}
    		weight, ok := consumeInt64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top