Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for ptrdata (0.2 sec)

  1. src/cmd/cgo/internal/testshared/testdata/global/main.go

    import (
    	"testshared/globallib"
    )
    
    //go:noinline
    func testLoop() {
    	for i, s := range globallib.Data {
    		if s != int64(i) {
    			panic("testLoop: mismatch")
    		}
    	}
    }
    
    //go:noinline
    func ptrData() *[1<<20 + 10]int64 {
    	return &globallib.Data
    }
    
    //go:noinline
    func testMediumOffset() {
    	for i, s := range globallib.Data[1<<16-2:] {
    		if s != int64(i)+1<<16-2 {
    			panic("testMediumOffset: index mismatch")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/time/tzdata/tzdata.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package tzdata provides an embedded copy of the timezone database.
    // If this package is imported anywhere in the program, then if
    // the time package cannot find tzdata files on the system,
    // it will use this embedded information.
    //
    // Importing this package will increase the size of a program by about
    // 450 KB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateObjectiveCppBaseNamesTestApp.groovy

                void sayFoo1()
                {
                    NSFileHandle *stdout = [NSFileHandle fileHandleWithStandardOutput];
                    NSData *strData = [@"foo1" dataUsingEncoding: NSASCIIStringEncoding];
                    [stdout writeData: strData];
                }
            """),
                    sourceFile("objcpp/foo2", "foo.mm", """
                #import <iostream>
                #import "foo.h"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/crypto/x509/pem_decrypt_test.go

    		}
    		if !bytes.Equal(der, plainDER) {
    			t.Errorf("data mismatch")
    		}
    	}
    }
    
    var testData = []struct {
    	kind     PEMCipher
    	password []byte
    	pemData  []byte
    	plainDER string
    }{
    	{
    		kind:     PEMCipherDES,
    		password: []byte("asdf"),
    		pemData: []byte(testingKey(`
    -----BEGIN RSA TESTING KEY-----
    Proc-Type: 4,ENCRYPTED
    DEK-Info: DES-CBC,34F09A4FC8DE22B5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 20:03:55 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  5. docs_src/generate_clients/tutorial004.js

        const openapiContent = JSON.parse(data)
    
        const paths = openapiContent.paths
        for (const pathKey of Object.keys(paths)) {
          const pathData = paths[pathKey]
          for (const method of Object.keys(pathData)) {
            const operation = pathData[method]
            if (operation.tags && operation.tags.length > 0) {
              const tag = operation.tags[0]
              const operationId = operation.operationId
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 11:40:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateObjectiveCBaseNamesTestApp.groovy

                void sayFoo$index()
                {
                    NSFileHandle *stdout = [NSFileHandle fileHandleWithStandardOutput];
                    NSData *strData = [@"foo$index" dataUsingEncoding: NSASCIIStringEncoding];
                    [stdout writeData: strData];
                }
            """)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/debugger/dumper.go

    func (d *CacheDumper) dumpSchedulingQueue(logger klog.Logger) {
    	pendingPods, s := d.podQueue.PendingPods()
    	var podData strings.Builder
    	for _, p := range pendingPods {
    		podData.WriteString(printPod(p))
    	}
    	logger.Info("Dump of scheduling queue", "summary", s, "pods", podData.String())
    }
    
    // printNodeInfo writes parts of NodeInfo to a string.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/idna/trie13.0.0.go

    	}
    	b = append(b, s...)
    	if c&inlineXOR == inlineXOR {
    		// TODO: support and handle two-byte inline masks
    		b[len(b)-1] ^= byte(index)
    	} else {
    		for p := len(b) - int(xorData[index]); p < len(b); p++ {
    			index++
    			b[p] ^= xorData[index]
    		}
    	}
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 872 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

                {
                    NSString *hello = @"Hello";
                    NSFileHandle *stdout = [NSFileHandle fileHandleWithStandardOutput];
                    NSData *strData = [hello dataUsingEncoding: NSASCIIStringEncoding];
                    [stdout writeData: strData];
                }"""),
    
                    sourceFile("c", "clib.c", """
                #include <stdio.h>
                #include "hello.h"
    
                void bonjour() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                    NSString *helloWorld = @"${HELLO_WORLD}\\n";
                    NSFileHandle *stdout = [NSFileHandle fileHandleWithStandardOutput];
                    NSData *strData = [helloWorld dataUsingEncoding: NSASCIIStringEncoding];
                    [stdout writeData: strData];
                    #endif
                }
            """),
                new SourceFile("objcpp", "sum.mm", """
                #include "common.h"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top