Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 126 for indices (0.36 sec)

  1. src/crypto/tls/handshake_messages.go

    	s := cryptobyte.String(data)
    	return s.Skip(1) &&
    		readUint24LengthPrefixed(&s, &m.verifyData) &&
    		s.Empty()
    }
    
    type certificateRequestMsg struct {
    	// hasSignatureAlgorithm indicates whether this message includes a list of
    	// supported signature algorithms. This change was introduced with TLS 1.2.
    	hasSignatureAlgorithm bool
    
    	certificateTypes             []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            given:
            def configuration = conf()
    
            when:
            configuration.getBuildDependencies()
    
            then:
            0 * _._
        }
    
        def "state indicates failure resolving graph"() {
            given:
            def configuration = conf()
            def failure = new TypedResolveException("dependencies", "configuration ':conf'", [new RuntimeException()])
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    			Package:    p,
    			IgnoreFail: true, // run (prepare output) even if build failed
    			TryCache:   rta.c.tryCache,
    		}
    		if writeCoverMetaAct != nil {
    			// If writeCoverMetaAct != nil, this indicates that our
    			// "go test -coverpkg" run actions will need to read the
    			// meta-files summary file written by writeCoverMetaAct,
    			// so add a dependence edge from writeCoverMetaAct to the
    			// run action.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
       * <p>This is mainly just to avoid the intermediate ArrayDeque in ConsumingQueueIterator.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

       *
       * <p>This method accepts an array with element type {@code @Nullable T}, but callers must pass an
       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
       * <p>This is mainly just to avoid the intermediate ArrayDeque in ConsumingQueueIterator.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    				c.watchersBuffer = append(c.watchersBuffer, watcher)
    			}
    		}
    	} else {
    		// supported equal to false generally means that trigger function
    		// is not defined (or not aware of any indexes). In this case,
    		// watchers filters should generally also don't generate any
    		// trigger values, but can cause problems in case of some
    		// misconfiguration. Thus we paranoidly leave this branch.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_NOBROWSE DI_FLAGS = 0x00000200 // no Browse... in InsertDisk
    
    	// Flags set by DiBuildDriverInfoList
    	DI_MULTMFGS DI_FLAGS = 0x00000400 // Set if multiple manufacturers in class driver list
    
    	// Flag indicates that device is disabled
    	DI_DISABLED DI_FLAGS = 0x00000800 // Set if device disabled
    
    	// Flags for Device/Class Properties
    	DI_GENERALPAGE_ADDED  DI_FLAGS = 0x00001000
    	DI_RESOURCEPAGE_ADDED DI_FLAGS = 0x00002000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    	"errors"
    	"fmt"
    	"internal/goversion"
    	"internal/testenv"
    	"reflect"
    	"regexp"
    	"sort"
    	"strings"
    	"sync"
    	"testing"
    
    	. "cmd/compile/internal/types2"
    )
    
    // nopos indicates an unknown position
    var nopos syntax.Pos
    
    func mustParse(src string) *syntax.File {
    	f, err := syntax.Parse(syntax.NewFileBase(pkgName(src)), strings.NewReader(src), nil, nil, 0)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    		LockEnabled: objectLockEnabled,
    		ForceCreate: forceCreate,
    	}
    
    	if globalDNSConfig != nil {
    		sr, err := globalDNSConfig.Get(bucket)
    		if err != nil {
    			// ErrNotImplemented indicates a DNS backend that doesn't need to check if bucket already
    			// exists elsewhere
    			if err == dns.ErrNoEntriesFound || err == dns.ErrNotImplemented {
    				// Proceed to creating a bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    	"go/ast"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"internal/goversion"
    	"internal/testenv"
    	"reflect"
    	"regexp"
    	"slices"
    	"strings"
    	"sync"
    	"testing"
    
    	. "go/types"
    )
    
    // nopos indicates an unknown position
    var nopos token.Pos
    
    func mustParse(fset *token.FileSet, src string) *ast.File {
    	f, err := parser.ParseFile(fset, pkgName(src), src, parser.ParseComments)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top