Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for avoided (0.15 sec)

  1. src/go/types/unify.go

    				// have assignment conflicts, so we can ignore directionality in this case.
    				//
    				// If we have defined and literal channel types, a defined type wins to avoid
    				// order dependencies.
    				if mode&exact == 0 {
    					switch {
    					case xn:
    						// x is a defined type: nothing to do.
    					case yn:
    						// x is not a defined type and y is a defined type: select y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // feeding into the function return. This is necessary to avoid inserting
      // casts which cannot be refined.
      if (isa<CastOp>(op)) return InferShapeForCast(op);
    
      // Handle IfOp here by inferring the shape from the else/then function
      // results. Since `output_shapes` is a derived attribute, avoid going down the
      // TF InferenceContext path as IfOp shape inference is implemented as just
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. callbacks/preload.go

    func preloadEntryPoint(db *gorm.DB, joins []string, relationships *schema.Relationships, preloads map[string][]interface{}, associationsConds []interface{}) error {
    	preloadMap := parsePreloadMap(db.Statement.Schema, preloads)
    
    	// avoid random traversal of the map
    	preloadNames := make([]string, 0, len(preloadMap))
    	for key := range preloadMap {
    		preloadNames = append(preloadNames, key)
    	}
    	sort.Strings(preloadNames)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //(SF) this is a workaround until this story is completed. I'm hardcoding setting the idle timeout to be max X mins.
            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
            int maxTimeout = 2 * 60 * 1000;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tests/integration/ambient/main_test.go

    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    
    	// used to validate telemetry in-cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

            if (GradleRuntimeShadedJarDetector.isLoadedFrom(getClass())) {
                return new FlatClassLoaderRegistry(getClass().getClassLoader());
            }
    
            // Use DirectInstantiator here to avoid setting up the instantiation infrastructure early
            return new DefaultClassLoaderRegistry(classPathRegistry, legacyTypesSupport, DirectInstantiator.INSTANCE);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. hack/unwanted-dependencies.json

          "google.golang.org/genproto": "refer to #113366",
          "gopkg.in/fsnotify.v1": "obsolete, use github.com/fsnotify/fsnotify",
          "k8s.io/klog": "we have switched to klog v2, so avoid klog v1",
          "rsc.io/quote": "refer to #102833",
          "rsc.io/sampler": "refer to #102833"
        }
      },
      "status": {
        "unwantedReferences": {
          "cloud.google.com/go": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    	}
    
    	return filterChains
    }
    
    // buildInboundBlackhole builds a special filter chain for the virtual inbound matching traffic to the port the listener is actually on.
    // This avoids a possible loop where traffic sent to this port would continually call itself indefinitely.
    func buildInboundBlackhole(lb *ListenerBuilder) *listener.FilterChain {
    	var filters []*listener.Filter
    	if !lb.node.IsWaypointProxy() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    				// have assignment conflicts, so we can ignore directionality in this case.
    				//
    				// If we have defined and literal channel types, a defined type wins to avoid
    				// order dependencies.
    				if mode&exact == 0 {
    					switch {
    					case xn:
    						// x is a defined type: nothing to do.
    					case yn:
    						// x is not a defined type and y is a defined type: select y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

         */
        void initGitDir() {
            Git.init().setDirectory(testDirectory).call().withCloseable { Git git ->
                // Clear config hierarchy to avoid global configuration loaded from user home
                for (Config config = git.repository.config; config != null; config = config.getBaseConfig()) {
                    //noinspection GroovyAccessibility
                    config.clear()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top