Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 121 for derp (2.33 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    /**
     * A {@link DynamicObject} which uses groovy reflection to provide access to the properties and methods of a bean.
     *
     * <p>Uses some deep hacks to avoid some expensive reflections and the use of exceptions when a particular property or method cannot be found,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    		}
    
    		prevQueue := queue
    		queue = nil
    		for _, pkg := range prevQueue {
    			m := pkg.mod
    			if m.Path == "" {
    				continue
    			}
    			for _, dep := range pkg.imports {
    				if !queued[dep] {
    					queue = append(queue, dep)
    					queued[dep] = true
    				}
    			}
    			if pkg.test != nil && !queued[pkg.test] {
    				queue = append(queue, pkg.test)
    				queued[pkg.test] = true
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    func (e *EndpointIndex) clearCacheForService(svc, ns string) {
    	e.cache.Clear(sets.Set[ConfigKey]{{
    		Kind:      kind.ServiceEntry,
    		Name:      svc,
    		Namespace: ns,
    	}: {}})
    }
    
    // Shardz returns a full deep copy of the global map of shards. This should be used only for testing
    // and debugging, as the cloning is expensive.
    func (e *EndpointIndex) Shardz() map[string]map[string]*EndpointShards {
    	e.mu.RLock()
    	defer e.mu.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    func (db *DB) dumpDeps(t *testing.T) {
    	for fc := range db.dep {
    		db.dumpDep(t, 0, fc, map[finalCloser]bool{})
    	}
    }
    
    func (db *DB) dumpDep(t *testing.T, depth int, dep finalCloser, seen map[finalCloser]bool) {
    	seen[dep] = true
    	indent := strings.Repeat("  ", depth)
    	ds := db.dep[dep]
    	for k := range ds {
    		t.Logf("%s%T (%p) waiting for -> %T (%p)", indent, dep, dep, k, k)
    		if fc, ok := k.(finalCloser); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. cmd/erasure-sets.go

    	})
    	if err != nil {
    		return nil, nil, err
    	}
    
    	format, err := loadFormatErasure(disk, false)
    	if err != nil {
    		if errors.Is(err, errUnformattedDisk) {
    			info, derr := disk.DiskInfo(context.TODO(), DiskInfoOptions{})
    			if derr != nil && info.RootDisk {
    				disk.Close()
    				return nil, nil, fmt.Errorf("Drive: %s is a root drive", disk)
    			}
    		}
    		disk.Close()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    func TestUnknownAuthorityError(t *testing.T) {
    	for i, tt := range unknownAuthorityErrorTests {
    		t.Run(tt.name, func(t *testing.T) {
    			der, _ := pem.Decode([]byte(tt.cert))
    			if der == nil {
    				t.Fatalf("#%d: Unable to decode PEM block", i)
    			}
    			c, err := ParseCertificate(der.Bytes)
    			if err != nil {
    				t.Fatalf("#%d: Unable to parse certificate -> %v", i, err)
    			}
    			uae := &UnknownAuthorityError{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    		if netErr, ok := err.(net.Error); !ok || !netErr.Timeout() {
    			return err
    		}
    	}
    	return nil
    }
    
    func runClientTestForVersion(t *testing.T, template *clientTest, version, option string) {
    	// Make a deep copy of the template before going parallel.
    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. docs/en/data/external_links.yml

    i10/fastapi_cheatsheet title: A FastAPI and Swagger UI visual cheatsheet - author: Uber Engineering author_link: https://eng.uber.com link: https://eng.uber.com/ludwig-v0-2/ title: 'Uber: Ludwig v0.2 Adds New Features and Other Improvements to its Deep Learning Toolbox [including a FastAPI server]' - author: Maarten Grootendorst author_link: https://www.linkedin.com/in/mgrootendorst/ link: https://towardsdatascience.com/how-to-deploy-a-machine-learning-model-dc51200fe8cf title: How to Deploy a Machine...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. src/encoding/asn1/marshal.go

    	// at their trailing end with 0-octets.
    	//
    	// First we encode each element to its TLV encoding and then use
    	// octetSort to get the ordering expected by X690 DER rules before
    	// writing the sorted encodings out to dst.
    	l := make([][]byte, len(s))
    	for i, e := range s {
    		l[i] = make([]byte, e.Len())
    		e.Encode(l[i])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

            handler -->> client: HTTP error response
            dep -->> dep: Raise other exception
        end
        dep ->> operation: Run dependency, e.g. DB session
        opt raise
            operation -->> dep: Raise HTTPException
            dep -->> handler: Auto forward exception
            handler -->> client: HTTP error response
            operation -->> dep: Raise other exception
            dep -->> handler: Auto forward exception
        end
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top