Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,132 for tracks (0.14 sec)

  1. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.Set;
    import java.util.function.Function;
    
    /**
     * The special-cased implementation of {@link Set} that tracks all accesses to its elements.
     *
     * @param <E> the type of elements
     */
    class AccessTrackingSet<E> extends ForwardingSet<E> {
        public interface Listener {
            void onAccess(@Nullable Object o);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Protocol.kt

       */
      HTTP_1_0("http/1.0"),
    
      /**
       * A plaintext framing that includes persistent connections.
       *
       * This version of OkHttp implements [RFC 7230][rfc_7230], and tracks revisions to that spec.
       *
       * [rfc_7230]: https://tools.ietf.org/html/rfc7230
       */
      HTTP_1_1("http/1.1"),
    
      /**
       * Chromium's binary-framed protocol that includes header compression, multiplexing multiple
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/statusgen.go

    	Server *DiscoveryServer
    
    	// TODO: track last N Nacks and connection events, with 'version' based on timestamp.
    	// On new connect, use version to send recent events since last update.
    }
    
    func NewStatusGen(s *DiscoveryServer) *StatusGen {
    	return &StatusGen{
    		Server: s,
    	}
    }
    
    // Generate XDS responses about internal events:
    // - connection status
    // - NACKs
    // We can also expose ACKS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/node_ipam_controller.go

    		go nc.legacyIPAM.Run(ctx)
    	} else {
    		go nc.cidrAllocator.Run(ctx)
    	}
    
    	<-ctx.Done()
    }
    
    // RunWithMetrics is a wrapper for Run that also tracks starting and stopping of the nodeipam controller with additional metric
    func (nc *Controller) RunWithMetrics(ctx context.Context, controllerManagerMetrics *controllersmetrics.ControllerManagerMetrics) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. pkg/xds/server.go

    	for _, rr := range r {
    		a = append(a, rr.Resource)
    	}
    	return a
    }
    
    // WatchedResource tracks an active DiscoveryRequest subscription.
    type WatchedResource struct {
    	// TypeUrl is copied from the DiscoveryRequest.TypeUrl that initiated watching this resource.
    	// nolint
    	TypeUrl string
    
    	// ResourceNames tracks the list of resources that are actively watched.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistry.java

    import java.util.Collection;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * Tracks plugins, libraries and their versions used during build generation.
     */
    @NonNullApi
    public class VersionCatalogDependencyRegistry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResult.java

         * @param moduleAction an action to be performed on each node (module) in the graph
         * @param dependencyAction an action to be performed on each edge (dependency) in the graph
         * @param visited tracks the visited nodes during the recursive traversal
         */
        public static void eachElement(
            ResolvedComponentResult start,
            Action<? super ResolvedComponentResult> moduleAction,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/optimize_global_tensors.cc

    struct OptimizeGlobalTensorsPass
        : public impl::OptimizeGlobalTensorsPassBase<OptimizeGlobalTensorsPass> {
      void runOnOperation() override;
    };
    
    // A global tensor is bound to arguments of multiple funcs.
    // This struct tracks which funcs (and which argument to that func) the global
    // tensor is bound to.
    struct GlobalTensorUse {
      mutable func::FuncOp func;
      size_t arg_index;
    };
    
    using GlobalTensorUsesMap =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/internal/coverage/defs.go

    // units will be in use.
    type CoverableUnit struct {
    	StLine, StCol uint32
    	EnLine, EnCol uint32
    	NxStmts       uint32
    	Parent        uint32
    }
    
    // CounterMode tracks the "flavor" of the coverage counters being
    // used in a given coverage-instrumented program.
    type CounterMode uint8
    
    const (
    	CtrModeInvalid  CounterMode = iota
    	CtrModeSet                  // "set" mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

                    new PropertiesAsMap(((DefaultProject) project).getProject().getProperties()));
        }
    
        @Override
        public Optional<Project> getExecutionProject(Project project) {
            // Session keep tracks of the Project per project id,
            // so we cannot use session.getProject(p) for forked projects
            // which are temporary clones
            return Optional.ofNullable(getMavenProject(project).getExecutionProject())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top