Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for dev2 (0.14 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    // flag. By default, we prefer to be fast (returning false), except on
    // the linux-amd64 builder that's already very fast, so we get more
    // test coverage on trybots. See https://go.dev/issue/34297.
    func defaultAllCodeGen() bool {
    	return os.Getenv("GO_BUILDER_NAME") == "linux-amd64"
    }
    
    var (
    	// Package-scoped variables that are initialized at the start of Test.
    	goTool       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// - '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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// - '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
    - 61.6K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

    .NOTES
      This module depends on common.psm1.
    
      Some portions copied / adapted from
      https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1.
    
    .EXAMPLE
      Suggested usage for dev/test:
        [Net.ServicePointManager]::SecurityProtocol = `
            [Net.SecurityProtocolType]::Tls12
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/k8s-node-setup.psm1 `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	// Flags for Device/Class Properties
    	DI_GENERALPAGE_ADDED  DI_FLAGS = 0x00001000
    	DI_RESOURCEPAGE_ADDED DI_FLAGS = 0x00002000
    
    	// Flag to indicate the setting properties for this Device (or class) caused a change so the Dev Mgr UI probably needs to be updated.
    	DI_PROPERTIES_CHANGE DI_FLAGS = 0x00004000
    
    	// Flag to indicate that the sorting from the INF file should be used.
    	DI_INF_IS_SORTED DI_FLAGS = 0x00008000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

     * find it easier to use a framework. Frameworks automate the process, often adding features like
     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    		t.Errorf("Got error: %v; want Request.Body read error: %v", err, someErr)
    	}
    
    	// And verify that our Body wasn't used multiple times, which
    	// would indicate retries. (as it buggily was during part of
    	// Go 1.8's dev cycle)
    	readCalls := atomic.LoadInt32(&readCallsAtomic)
    	closeCalls := atomic.LoadInt32(&closeCallsAtomic)
    	if readCalls != 1 {
    		t.Errorf("read calls = %d; want 1", readCalls)
    	}
    	if closeCalls != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

     * find it easier to use a framework. Frameworks automate the process, often adding features like
     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    					// MSVC does not support the _Complex keyword
    					// nor the complex macro.
    					// Use GoComplex64 and GoComplex128 instead,
    					// which are typedef-ed to a compatible type.
    					// See go.dev/issues/36233.
    					return goTypesFixup(goTypes[defgo.Name])
    				}
    			}
    			return def
    		}
    		if t.Name == "uintptr" {
    			return &Type{Size: p.PtrSize, Align: p.PtrSize, C: c("GoUintptr")}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    		if pubKeyAlgo != Ed25519 {
    			return ErrUnsupportedAlgorithm
    		}
    	case crypto.MD5:
    		return InsecureAlgorithmError(algo)
    	case crypto.SHA1:
    		// SHA-1 signatures are mostly disabled. See go.dev/issue/41682.
    		if !allowSHA1 {
    			if x509sha1.Value() != "1" {
    				return InsecureAlgorithmError(algo)
    			}
    			x509sha1.IncNonDefault()
    		}
    		fallthrough
    	default:
    		if !hashType.Available() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top