Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for 3306 (0.03 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/asan4_fail.go

    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    #include <stdlib.h>
    #include <stdio.h>
    
    void test(int* a) {
    	// Access Go pointer out of bounds.
    	a[3] = 300;          // BOOM
    	// We shouldn't get here; asan should stop us first.
    	printf("a[3]=%d\n", a[3]);
    }*/
    import "C"
    
    func main() {
    	var cIntArray [2]C.int
    	C.test(&cIntArray[0]) // cIntArray is moved to heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 496 bytes
    - Viewed (0)
  2. src/go/parser/testdata/issue3106.src

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for go.dev/issue/3106: Better synchronization of
    // parser after certain syntax errors.
    
    package main
    
    func f() {
    	var m Mutex
    	c := MakeCond(&m)
    	percent := 0
    	const step = 10
    	for i := 0; i < 5; i++ {
    		go func() {
    			for {
    				// Emulates some useful work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 829 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/package.json

        "@typescript-eslint/parser": "5.59.6",
        "eslint": "8.40.0",
        "eslint-config-prettier": "8.8.0",
        "npm-run-all": "4.1.5",
        "prettier": "2.8.8",
        "stylelint": "15.6.2",
        "stylelint-config-standard": "33.0.0",
        "typescript": "5.0.4"
      },
      "dependencies": {
        "@observablehq/plot": "0.6.9",
        "d3": "7.8.5"
      }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 650 bytes
    - Viewed (0)
  4. src/image/png/testdata/pngsuite/basn0g16.sng

    0400 0d00 1600 1f00 2800 3100 3a00 4300 4c00 5500 5e00 6700 7000 7900 8200 8b00 9400 9d00 a600 af00 b800 c100 ca00 d300 dc00 e500 ee00 f700 ffff e4ff c9ff aeff 
    0600 0f00 1800 2100 2a00 3300 3c00 4500 4e00 5700 6000 6900 7200 7b00 8400 8d00 9600 9f00 a800 b100 ba00 c300 cc00 d500 de00 e700 f000 f900 f9ff deff c3ff a8ff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5.2K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ALPN-NoMatch

    00000050  00 ff 01 00 00 91 00 0b  00 04 03 00 01 02 00 0a  |................|
    00000060  00 0c 00 0a 00 1d 00 17  00 1e 00 19 00 18 00 23  |...............#|
    00000070  00 00 00 10 00 10 00 0e  06 70 72 6f 74 6f 32 06  |.........proto2.|
    00000080  70 72 6f 74 6f 31 00 16  00 00 00 17 00 00 00 0d  |proto1..........|
    00000090  00 1e 00 1c 04 03 05 03  06 03 08 07 08 08 08 09  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. operator/pkg/validate/validate_values_test.go

    `,
    		},
    		{
    			desc: "ProxyConfig",
    			yamlStr: `
    global:
      podDNSSearchNamespaces:
      - "my-namespace"
      proxy:
        includeIPRanges: "1.1.0.0/16,2.2.0.0/16"
        excludeIPRanges: "3.3.0.0/16,4.4.0.0/16"
        excludeInboundPorts: "333,444"
        clusterDomain: "my.domain"
        lifecycle:
          preStop:
            exec:
              command: ["/bin/sh", "-c", "sleep 30"]
    `,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreConcurrencyTest.groovy

            run(_ as RunnableBuildOperation) >> { RunnableBuildOperation operation ->
                def context = Stub(BuildOperationContext)
                operation.run(context)
            }
        }
    
        @Issue("GRADLE-3206")
        def "can create new caches and access them in parallel"() {
            def store = new DefaultPersistentDirectoryStore(cacheDir, "<display>", mode(OnDemand), null, lockManager, executorFactory, buildOperationRunner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/eventclock/real_event_clock_test.go

    			if realD < d {
    				t.Errorf("Asked for %v, got %v", d, realD)
    			}
    		}
    		if abs {
    			ec.EventAfterTime(f, now.Add(d))
    		} else {
    			ec.EventAfterDuration(f, d)
    		}
    	}
    	try(true, time.Millisecond*3300)
    	for i := 0; i < batchSize; i++ {
    		d := time.Duration(rand.Intn(30)-3) * time.Millisecond * 100
    		try(i%2 == 0, d)
    	}
    	time.Sleep(time.Second * 4)
    	if atomic.LoadInt32(&numDone) != batchSize+1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/ResolutionExceptionSerializableCrossVersionSpec.groovy

        CustomPlugin(ToolingModelBuilderRegistry registry) {
            registry.register(new CustomBuilder())
        }
    
        public void apply(Project project) {
        }
    }
    
    """
        }
    
        @Issue("GRADLE-3307")
        @TargetGradleVersion(">=3.2")
        def "serializes exception when dependencies aren't resolved"() {
            when:
            file('build.gradle') << """
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*3298*/ uint16(xMatch),
    	/*3299*/ uint16(xCondPrefix), 1,
    	0x66, 3303,
    	/*3303*/ uint16(xSetOp), uint16(EXTRACTPS),
    	/*3305*/ uint16(xReadSlashR),
    	/*3306*/ uint16(xReadIb),
    	/*3307*/ uint16(xArgRM32),
    	/*3308*/ uint16(xArgXmm1),
    	/*3309*/ uint16(xArgImm8u),
    	/*3310*/ uint16(xMatch),
    	/*3311*/ uint16(xCondPrefix), 1,
    	0x66, 3315,
    	/*3315*/ uint16(xSetOp), uint16(PINSRB),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
Back to top