Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for dev2 (0.33 sec)

  1. src/reflect/type.go

    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/goplus/reflectx
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname addReflectOff
    //go:noescape
    func addReflectOff(ptr unsafe.Pointer) int32
    
    // resolveReflectName adds a name to the reflection lookup map in the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								},
    								map[string]interface{}{
    									"name":  "etcd",
    									"port":  2379,
    									"field": "value",
    								},
    								map[string]interface{}{
    									"name":  "dev",
    									"port":  8080,
    									"field": "value",
    								},
    							},
    						}}},
    				patchMyCRDV1Beta1Schema{
    					"Require even numbered port in key, remove maxItems requirement",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. src/go/build/build.go

    // See go.dev/issue/67401.
    //
    //go:linkname defaultToolTags
    var defaultToolTags []string
    
    // defaultReleaseTags should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/gopherjs/gopherjs
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/regexp/testdata/testregex.c

    				return 2;
    			}
    			break;
    		}
    	if (!*argv)
    		argv = filter;
    	locale = 0;
    	while (state.file = *argv++)
    	{
    		if (streq(state.file, "-") || streq(state.file, "/dev/stdin") || streq(state.file, "/dev/fd/0"))
    		{
    			state.file = 0;
    			fp = stdin;
    		}
    		else if (!(fp = fopen(state.file, "r")))
    		{
    			fprintf(stderr, "%s: %s: cannot read\n", unit, state.file);
    			return 2;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. docs/bucket/notifications/README.md

    Bucket events can be published to the following targets:
    
    | Supported Notification Targets    |                             |                                 |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mknod(path string, mode uint32, dev int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_mknod_trampoline), uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(dev))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_mknod_trampoline()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
      //   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
      // 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
      //   request resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    		t.Skipf("skipping test because buildmode=pie is not supported on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    	// Skip on alpine until https://go.dev/issues/54354 resolved.
    	if strings.HasSuffix(testenv.Builder(), "-alpine") {
    		t.Skip("skipping PIE tests on alpine; see https://go.dev/issues/54354")
    	}
    	t.Run("non-cgo", func(t *testing.T) {
    		testBuildmodePIE(t, false, true)
    	})
    	t.Run("cgo", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    var writeBarrier struct {
    	enabled bool    // compiler emits a check of this before calling write barrier
    	pad     [3]byte // compiler uses 32-bit load for "enabled" field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .build.gradle.kts
    [source,kotlin]
    ----
    tasks {
        test {
            val reportType by extra("dev")  // <1>
            doLast {
                // Use 'suffix' for post processing of reports
            }
        }
    
        register<Zip>("archiveTestReports") {
            val reportType: String by test.get().extra  // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top