Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,474 for tracks (0.12 sec)

  1. 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)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

         */
        ResolvedComponentResult getRoot();
    
        /**
         * Returns the root of resolved dependency graph as a {@link Provider} of {@link ResolvedComponentResult}.
         * The returned {@link Provider} is live, and tracks the producer tasks of this resolution result.
         * The provider will resolve the component metadata as required.
         *
         * You can walk the graph recursively from the root to obtain information about resolved dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/model/push_context.go

    	// ProxyStatusConflictOutboundListenerTCPOverTCP metric tracks number of
    	// TCP listeners that conflicted with existing TCP listeners on same port
    	ProxyStatusConflictOutboundListenerTCPOverTCP = monitoring.NewGauge(
    		"pilot_conflict_outbound_listener_tcp_over_current_tcp",
    		"Number of conflicting tcp listeners with current tcp listener.",
    	)
    
    	// ProxyStatusConflictInboundListener tracks cases of multiple inbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

        private final List<String> includeExtensions
        private final String sourceSet
        private final String lang
    
        CompilationOutputsFixture(File targetDir) {
            this(targetDir, [])
        }
        /**
         * Tracks outputs in given target dir considering only the files by the given extensions (ignoring case)
         */
        CompilationOutputsFixture(File targetDir, List<String> includeExtensions, String sourceSet = "main", String lang = "java") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/services.go

    func (p *serviceEvaluator) Constraints(required []corev1.ResourceName, item runtime.Object) error {
    	// this is a no-op for services
    	return nil
    }
    
    // GroupResource that this evaluator tracks
    func (p *serviceEvaluator) GroupResource() schema.GroupResource {
    	return corev1.SchemeGroupVersion.WithResource("services").GroupResource()
    }
    
    // Handles returns true of the evaluator should handle the specified operation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    }
    
    // converter converts from JSON schema to a structural schema and a CEL declType, or returns an error if the conversion
    // fails. This should be defaultConverter except in tests where it is useful to wrap it with a converter that tracks
    // how many conversions have been performed.
    type converter func(schema *apiextensions.JSONSchemaProps, isRoot bool) (*CELTypeInfo, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top