Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 212 for xremove (0.2 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		expectEvents(t, events, Event{Type: "eds", ID: "*.google.com", Namespace: httpStaticOverlay.Namespace, EndpointCount: len(instances)})
    	})
    
    	t.Run("update removes endpoint", func(t *testing.T) {
    		// Update the SE for the same host to remove the endpoint
    		createConfigs([]*config.Config{httpStaticOverlay}, store, t)
    		instances := append(baseInstances,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    func (list *mSpanList) init() {
    	list.first = nil
    	list.last = nil
    }
    
    func (list *mSpanList) remove(span *mspan) {
    	if span.list != list {
    		print("runtime: failed mSpanList.remove span.npages=", span.npages,
    			" span=", span, " prev=", span.prev, " span.list=", span.list, " list=", list, "\n")
    		throw("mSpanList.remove")
    	}
    	if list.first == span {
    		list.first = span.next
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/net/http/request.go

    		if !usingProxy {
    			host = ""
    		} else {
    			return errors.New("http: invalid Host header")
    		}
    	}
    
    	// According to RFC 6874, an HTTP client, proxy, or other
    	// intermediary must remove any IPv6 zone identifier attached
    	// to an outgoing URI.
    	host = removeZone(host)
    
    	ruri := r.URL.RequestURI()
    	if usingProxy && r.URL.Scheme != "" && r.URL.Opaque == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. pkg/apis/storage/validation/validation_test.go

    			new.Spec.VolumeLifecycleModes = nil
    		},
    	}, {
    		name: "VolumeLifecyclePersistent removed",
    		modify: func(new *storage.CSIDriver) {
    			new.Spec.VolumeLifecycleModes = []storage.VolumeLifecycleMode{
    				storage.VolumeLifecycleEphemeral,
    			}
    		},
    	}, {
    		name: "VolumeLifecycleEphemeral removed",
    		modify: func(new *storage.CSIDriver) {
    			new.Spec.VolumeLifecycleModes = []storage.VolumeLifecycleMode{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>keys automatically wrapped in {@code WeakReference}
     *   <li>values automatically wrapped in {@code WeakReference} or {@code SoftReference}
     *   <li>notification of evicted (or otherwise removed) entries
     *   <li>accumulation of cache access statistics
     * </ul>
     *
     * <p>These features are all optional; caches can be created using all or none of them. By default,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    								ft.update(parent, v, v.Args[i], signed, lt|eq)
    								ft.update(parent, v, ft.zero, signed, gt|eq)
    							}
    						}
    					}
    				}
    				if ft.unsat {
    					// node.block is unreachable.
    					// Remove it and don't visit
    					// its children.
    					removeBranch(parent, branch)
    					ft.restore()
    					break
    				}
    				// Otherwise, we can now commit to
    				// taking this branch. We'll restore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    		certPath = tempFile(clientCertificatePEM)
    		defer os.Remove(certPath)
    		keyPath = tempFile(clientKeyPEM)
    		defer os.Remove(keyPath)
    		ecdsaCertPath = tempFile(clientECDSACertificatePEM)
    		defer os.Remove(ecdsaCertPath)
    		ecdsaKeyPath = tempFile(clientECDSAKeyPEM)
    		defer os.Remove(ecdsaKeyPath)
    		ed25519CertPath = tempFile(clientEd25519CertificatePEM)
    		defer os.Remove(ed25519CertPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            // org:lib:1.0 -> org:between:1.0 -> org:lib:1.1
            //
            //  - org:lib:1.1 is selected
            //  - removes org:between:1.0
            //  - org:lib:1.1 stays selected (because of cycle), still internal state is updated partially and org:lib:1.1 selector is removed in some places
    
            given:
            def libUpdated = mavenRepo.module('org', 'lib', '1.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	{utiliptables.TableFilter, kubeletFirewallChain, utiliptables.ChainOutput, "", nil},
    }
    
    // When chains get removed from iptablesJumpChains, add them here so they get cleaned up
    // on upgrade.
    var iptablesCleanupOnlyChains = []iptablesJumpChain{}
    
    // CleanupLeftovers removes all iptables rules and chains created by the Proxier
    // It returns true if an error was encountered. Errors are logged.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	}
    
    	// OpArg*Reg values we've seen so far on our forward walk,
    	// for which we have not yet seen a corresponding spill.
    	regArgs := make([]ID, 0, 32)
    
    	// removeReg tries to remove a value from regArgs, returning true
    	// if found and removed, or false otherwise.
    	removeReg := func(r ID) bool {
    		for i := 0; i < len(regArgs); i++ {
    			if regArgs[i] == r {
    				regArgs = append(regArgs[:i], regArgs[i+1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top