Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for endClass (0.5 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    // remaining options after all others are ruled out.
    //   - Merge patch/Update cannot be used. If we always enforce that our object is *exactly* the same as
    //     the in-cluster object we will get in endless loops due to other controllers that like to add annotations, etc.
    //     If we chose to allow any unknown fields, then we would never be able to remove fields we added, as
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/go/types/predicates.go

    				// the current interface. Example:
    				//
    				//    type T interface {
    				//        m() interface{T}
    				//    }
    				//
    				// If two such (differently named) interfaces are compared,
    				// endless recursion occurs if the cycle is not detected.
    				//
    				// If x and y were compared before, they must be equal
    				// (if they were not, the recursion would have stopped);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/predicates.go

    				// the current interface. Example:
    				//
    				//    type T interface {
    				//        m() interface{T}
    				//    }
    				//
    				// If two such (differently named) interfaces are compared,
    				// endless recursion occurs if the cycle is not detected.
    				//
    				// If x and y were compared before, they must be equal
    				// (if they were not, the recursion would have stopped);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/crypto/tls/cipher_suites.go

    //     implement FFDHE, so that means ECDHE.
    //
    //   - AEADs come before CBC ciphers
    //
    //     Even with Lucky13 countermeasures, MAC-then-Encrypt CBC cipher suites
    //     are fundamentally fragile, and suffered from an endless sequence of
    //     padding oracle attacks. See https://eprint.iacr.org/2015/1129,
    //     https://www.imperialviolet.org/2014/12/08/poodleagain.html, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/encoding/gob/debug.go

    	if len(p.data) == 0 {
    		return p.r.Read(b)
    	}
    	// Satisfy what's possible from the read-ahead data.
    	n = copy(b, p.data)
    	// Move data down to beginning of slice, to avoid endless growth
    	copy(p.data, p.data[n:])
    	p.data = p.data[:len(p.data)-n]
    	return
    }
    
    // peek returns as many bytes as possible from the unread
    // portion of the stream, up to the length of b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    }
    
    // verifyInterfaceMethodRecvs verifies that method receiver types
    // are named if the methods belong to a named interface type.
    func verifyInterfaceMethodRecvs(t *testing.T, named *types.Named, level int) {
    	// avoid endless recursion in case of an embedding bug that lead to a cycle
    	if level > 10 {
    		t.Errorf("%s: embeds itself", named)
    		return
    	}
    
    	iface, _ := named.Underlying().(*types.Interface)
    	if iface == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/lookup.go

    		}
    	}
    
    	// Start with typ as single entry at shallowest depth.
    	current := []embeddedType{{typ, nil, isPtr, false}}
    
    	// seen tracks named types that we have seen already, allocated lazily.
    	// Used to avoid endless searches in case of recursive types.
    	//
    	// We must use a lookup on identity rather than a simple map[*Named]bool as
    	// instantiated types may be identical but not equal.
    	var seen instanceLookup
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/go/types/lookup.go

    		}
    	}
    
    	// Start with typ as single entry at shallowest depth.
    	current := []embeddedType{{typ, nil, isPtr, false}}
    
    	// seen tracks named types that we have seen already, allocated lazily.
    	// Used to avoid endless searches in case of recursive types.
    	//
    	// We must use a lookup on identity rather than a simple map[*Named]bool as
    	// instantiated types may be identical but not equal.
    	var seen instanceLookup
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. src/debug/dwarf/entry.go

    	if off > uint64(len(data)) {
    		data = nil
    	} else {
    		data = data[off:]
    	}
    	b := makeBuf(d, unknownFormat{}, "abbrev", 0, data)
    
    	// Error handling is simplified by the buf getters
    	// returning an endless stream of 0s after an error.
    	m := make(abbrevTable)
    	for {
    		// Table ends with id == 0.
    		id := uint32(b.uint())
    		if id == 0 {
    			break
    		}
    
    		// Walk over attributes, counting.
    		n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/provision_test.go

    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestProvisionMultiSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	tests := []controllerTest{
    		{
    			// Provision a volume with binding
    			name:            "12-1 - successful provision",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top