Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 543 for toTracking (0.25 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

                !configuration.isCanBeResolved() &&
                !Dependency.DEFAULT_CONFIGURATION.equals(configuration.getName()) &&
                !configuration.getAttributes().isEmpty();
        }
    
        /**
         * A report tracking all possible variant uniqueness failures for a component.
         */
        public static class VerificationReport {
    
            private final ListMultimap<VariantIdentity, ConfigurationInternal> byIdentity;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    [[sec:continuous_build_untracked]]
    === Inputs of untracked tasks
    Changes to the inputs of <<incremental_build.adoc#sec:disable-state-tracking,untracked tasks>> or tasks that have no outputs may not trigger a build.
    
    [[sec:continuous_build_project_dir]]
    === Changes to files outside of project directories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. hack/make-rules/test-cmd.sh

    # run kubelet.
    #
    # An arbitrary annotation is needed to ensure field managers are saved on the
    # object. Without it, we would be creating an empty object and because status
    # and name get wiped, there were be no field managers tracking any fields.
    #
    # Exports:
    #   SUPPORTED_RESOURCES(Array of all resources supported by the apiserver).
    function create_node() {
      kubectl create -f - << __EOF__
    {
      "kind": "Node",
      "apiVersion": "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec.cc

    // `dimension_specs` set, which represents the quantization dimension for the
    // input, then the corresponding operand index -> quantization dimension mapping
    // is set for `spec`.
    // TODO: b/323478683 - Duplicate tracking of config will be eliminated.
    // `OpQuantSpec` will be deprecated and `Method` will be used instead.
    void PopulateCoeffOpQuantDimIfPerChannelQuantized(
        TF::XlaCallModuleOp xla_call_module_op, OpQuantSpec& spec) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    	"time"
    
    	"k8s.io/utils/clock"
    )
    
    const (
    	// maxRetryAfter represents the maximum possible retryAfter.
    	maxRetryAfter = int64(32)
    )
    
    // DroppedRequestsTracker is an interface that allows tracking
    // a history od dropped requests in the system for the purpose
    // of adjusting RetryAfter header to avoid system overload.
    type DroppedRequestsTracker interface {
    	// RecordDroppedRequest records a request that was just
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. pkg/test/framework/scope.go

    	}
    
    	if p != nil {
    		p.children = append(p.children, s)
    	}
    
    	return s
    }
    
    func (s *scope) add(r resource.Resource, id *resourceID) {
    	scopes.Framework.Debugf("Adding resource for tracking: %v", id)
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	s.resources = append(s.resources, r)
    
    	if c, ok := r.(io.Closer); ok {
    		s.closers = append(s.closers, c)
    	}
    }
    
    func (s *scope) get(ref any) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/proxy/conntrack/conntrack.go

    		// These stale udp connection will keep black hole traffic. Making this a best effort operation for now, since it
    		// is expensive to baby-sit all udp connections to kubernetes services.
    		return fmt.Errorf("error deleting connection tracking state for UDP service IP: %s, error: %v", ip, err)
    	}
    	return nil
    }
    
    // ClearEntriesForPort is part of Interface
    func (ct *execCT) ClearEntriesForPort(port int, isIPv6 bool, protocol v1.Protocol) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/internal/trace/gc.go

    	// mutator utilization above this bound cannot affect the
    	// accumulated statistics.
    	bound float64
    
    	// Worst N window tracking
    	nWorst int
    	wHeap  utilHeap
    
    	// Mutator utilization distribution tracking
    	mud *mud
    	// preciseMass is the distribution mass that must be precise
    	// before accumulation is stopped.
    	preciseMass float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    	con.ids = ids
    	con.s = s
    	return xds.Stream(con)
    }
    
    // update the node associated with the connection, after receiving a packet from envoy, also adds the connection
    // to the tracking map.
    func (s *DiscoveryServer) initConnection(node *core.Node, con *Connection, identities []string) error {
    	// Setup the initial proxy metadata
    	proxy, err := s.initProxyMetadata(node)
    	if err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pkg/kubelet/status/state/state_checkpoint.go

    	checkpointManager, err := checkpointmanager.NewCheckpointManager(stateDir)
    	if err != nil {
    		return nil, fmt.Errorf("failed to initialize checkpoint manager for pod allocation tracking: %v", err)
    	}
    	stateCheckpoint := &stateCheckpoint{
    		cache:             NewStateMemory(),
    		checkpointManager: checkpointManager,
    		checkpointName:    checkpointName,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 00:16:44 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top