Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for overriding (0.34 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                    module('org.gradle.test:lib2:1.0')
                }
            }
        }
    
        void "overriding the version of a bundle overrides the version of all dependencies of the bundle"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    	// * Turn on sniffing if its HTTP and TCP mixed
    	// * Merge filter chains
    	switch conflictType {
    	case NoConflict, AutoOverHTTP:
    		// This is a new entry (NoConflict), or completely overriding (AutoOverHTTP); add it to the map
    		listenerMap[listenerMapKey] = &outboundListenerEntry{
    			servicePort: listenerOpts.port,
    			bind:        listenerOpts.bind,
    			chains:      opts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    	});
    	// include the themes plugin by default
    	$.jstree.defaults.plugins.push("themes");
    })(jQuery);
    //*/
    
    /*
     * jsTree JSON plugin
     * The JSON data store. Datastores are build by overriding the `load_node` and `_is_loaded` functions.
     */
    (function ($) {
    	$.jstree.plugin("json_data", {
    		__init : function() {
    			var s = this._get_settings().json_data;
    			if(s.progressive_unload) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    // potentially overriding the previous values.
    func mergeKubeletConfigurations(kubeletConfig *kubeletconfiginternal.KubeletConfiguration, kubeletDropInConfigDir string) error {
    	const dropinFileExtension = ".conf"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
      interface Trusted<V extends @Nullable Object> extends ListenableFuture<V> {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
      interface Trusted<V extends @Nullable Object> extends ListenableFuture<V> {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. src/cmd/go/internal/modload/buildlist.go

    func (rs *Requirements) String() string {
    	return fmt.Sprintf("{%v %v}", rs.pruning, rs.rootModules)
    }
    
    // initVendor initializes rs.graph from the given list of vendored module
    // dependencies, overriding the graph that would normally be loaded from module
    // requirements.
    func (rs *Requirements) initVendor(vendorList []module.Version) {
    	rs.graphOnce.Do(func() {
    		roots := MainModules.Versions()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    		t.Errorf("client ConnectionState contained unexpected SignedCertificateTimestamps after resumption: wanted %v, got %v",
    			oldSCTs, ccs.SignedCertificateTimestamps)
    	}
    
    	//  Only test overriding the SCTs for TLS 1.2, since in 1.3
    	// the server won't send the message containing them
    	if ver == VersionTLS13 {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    			); ok {
    				return drs
    			}
    		}
    	} else {
    		// If this is a namespace local DR in the same namespace, this must be meant for this proxy, so we do not
    		// need to worry about overriding other DRs with *.local type rules here. If we ignore this, then exportTo=. in
    		// root namespace would always be ignored
    		if _, drs, ok := MostSpecificHostMatch(service.Hostname,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    			pp.relocs[i].Set(rel.Off(), rel.Siz(), uint16(rel.Type()), rel.Add(), goobj.SymRef{PkgIdx: 0, SymIdx: uint32(rel.Sym())})
    		}
    
    		// Copy data
    		pp.data = r.Data(li)
    	}
    
    	// If we're overriding a data symbol, collect the associated
    	// Gotype, so as to propagate it to the new symbol.
    	auxs := r.Auxs(li)
    	pp.auxs = auxs
    
    	// Install new payload to global index space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top