Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for negligible (0.16 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

      long getExpireAfterAccessNanos() {
        return (expireAfterAccessNanos == UNSET_INT)
            ? DEFAULT_EXPIRATION_NANOS
            : expireAfterAccessNanos;
      }
    
      /**
       * Specifies that active entries are eligible for automatic refresh once a fixed duration has
       * elapsed after the entry's creation, or the most recent replacement of its value. The semantics
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

     private:
      // Keeps track of ops whose inputs cannot be quantized due to not meeting the
      // minimum_elements_for_weights threshold. Prevents emitting duplicate
      // warnings for the same op, once deemed ineligible for quantization.
      llvm::SetVector<Operation*> visited_nonquantizable_ops_;
      quant::QuantizationSpecs quant_specs_;
    };
    
    #include "tensorflow/compiler/mlir/lite/utils/generated_op_quant_spec_getters.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    						if features.EnableQUICListeners && gateway.IsEligibleForHTTP3Upgrade(s) &&
    							udpSupportedPort(s.GetPort().GetNumber(), gwAndInstance.instances) {
    							log.Debugf("Server at port %d eligible for HTTP3 upgrade. Add UDP listener for QUIC", serverPort.Number)
    							if mergedQUICServers[serverPort] == nil {
    								mergedQUICServers[serverPort] = &MergedServers{Servers: []*networking.Server{}}
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode.go

    			}
    			if !reachable[c.ID] {
    				reachable[c.ID] = true
    				p = append(p, c) // push
    			}
    		}
    	}
    	return reachable
    }
    
    // liveValues returns the live values in f and a list of values that are eligible
    // to be statements in reversed data flow order.
    // The second result is used to help conserve statement boundaries for debugging.
    // reachable is a map from block ID to whether the block is reachable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/runtime/pinner.go

    		panic(errorString("runtime.Pinner: argument is not a pointer: " + toRType(etyp).string()))
    	}
    	if inUserArenaChunk(uintptr(e.data)) {
    		// Arena-allocated objects are not eligible for pinning.
    		panic(errorString("runtime.Pinner: object was allocated into an arena"))
    	}
    	return e.data
    }
    
    // isPinned checks if a Go pointer is pinned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    				} else {
    					termNodeNames = termNodeNames.Intersection(s)
    				}
    			}
    		}
    		if termNodeNames == nil {
    			// If this term has no node.Name field affinity,
    			// then all nodes are eligible because the terms are ORed.
    			return nil, nil
    		}
    		nodeNames = nodeNames.Union(termNodeNames)
    	}
    	// If nodeNames is not nil, but length is 0, it means each term have conflicting affinity to node.Name;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    	domainsNum, ok := s.TpKeyToDomainsNum[tpKey]
    	if !ok {
    		return 0, fmt.Errorf("failed to retrieve the number of domains by topology key")
    	}
    
    	if domainsNum < int(minDomains) {
    		// When the number of eligible domains with matching topology keys is less than `minDomains`,
    		// it treats "global minimum" as 0.
    		minMatchNum = 0
    	}
    
    	return minMatchNum, nil
    }
    
    // Clone makes a copy of the given state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  8. manifests/charts/gateways/istio-ingress/values.yaml

          ### Advanced options ############
          env: {}
          nodeSelector: {}
          tolerations: []
    
          # Specify the pod anti-affinity that allows you to constrain which nodes
          # your pod is eligible to be scheduled based on labels on pods that are
          # already running on the node rather than based on labels on nodes.
          # There are currently two types of anti-affinity:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/flags.h

      bool tf_xla_clustering_debug;
    
      // Enables global JIT compilation for CPU via SessionOptions.
      bool tf_xla_cpu_global_jit;
    
      // "Compiler fuel" for clustering.  Only this many ops will be marked as
      // eligible for clustering.
      int64_t tf_xla_clustering_fuel;
    
      // If tf_xla_disable_deadness_safety_checks_for_debugging is set to true then
      // we do not do deadness related safety checks.  This is unsound in general,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/values.yaml

            # ISTIO_META_REQUESTED_NETWORK_VIEW: ""
    
          nodeSelector: {}
          tolerations: []
    
          # Specify the pod anti-affinity that allows you to constrain which nodes
          # your pod is eligible to be scheduled based on labels on pods that are
          # already running on the node rather than based on labels on nodes.
          # There are currently two types of anti-affinity:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top