Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 150 for vendoring (0.14 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/DependencyGraphsRenderer.java

    import org.gradle.internal.logging.text.StyledTextOutput;
    
    import java.util.Collection;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * This class is responsible for rendering multiple dependency graphs.
     * Each of them <i>may</i> have a specific root renderer (to display the dependency name, for example),
     * but it's not required. The graph renderer is used to render each of them.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * Endorse version constraints with {@link VersionConstraint#getStrictVersion()} strict versions} from the target module.
         *
         * Endorsing strict versions of another module/platform means that all strict versions will be interpreted during dependency
         * resolution as if they were defined by the endorsing module itself.
         *
         * @since 6.0
         */
        void endorseStrictVersions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleResolveMetadataSerializationHelper.java

            boolean constraint = decoder.readBoolean();
            boolean endorsing = decoder.readBoolean();
            boolean force = decoder.readBoolean();
            String reason = decoder.readNullableString();
            IvyArtifactName artifact = IvyArtifactNameSerializer.INSTANCE.readNullable(decoder);
            return new GradleDependencyMetadata(selector, excludes, constraint, endorsing, reason, force, artifact);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportRenderer.java

    import org.gradle.util.internal.GUtil;
    
    import java.util.List;
    
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.*;
    
    /**
     * <p>A {@code TaskReportRenderer} is responsible for rendering the model of a project task report.</p>
     */
    public class TaskReportRenderer extends TextReportRenderer {
        private boolean currentProjectHasTasks;
        private boolean currentProjectHasRules;
        private boolean hasContent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:53:41 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. operator/pkg/component/component.go

    // limitations under the License.
    
    /*
    Package component defines an in-memory representation of IstioOperator.<Feature>.<Component>. It provides functions
    for manipulating the component and rendering a manifest from it.
    See ../README.md for an architecture overview.
    */
    package component
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/version"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/operator/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/trace/goroutinegen.go

    }
    
    func (g *goroutineGenerator) ProcRange(ctx *traceContext, ev *trace.Event) {
    	// TODO(mknyszek): Extend procRangeGenerator to support rendering proc ranges
    	// that overlap with a goroutine's execution.
    }
    
    func (g *goroutineGenerator) ProcTransition(ctx *traceContext, ev *trace.Event) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    package counter
    
    // The implementation of this package and tests are located in
    // internal/counter, which can be shared with the upload package.
    // TODO(hyangah): use of type aliases prevents nice documentation
    // rendering in go doc or pkgsite. Fix this either by avoiding
    // type aliasing or restructuring the internal/counter package.
    import (
    	"flag"
    	"path"
    	"runtime/debug"
    
    	"golang.org/x/telemetry/internal/counter"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/EndorseStrictVersionsIntegrationTest.groovy

                                byAncestor()
                            }
                        }
                    }
                }
            }
        }
    
        def "strict version endorsing can be consumed from metadata"() {
            given:
            repository {
                'org:platform:1.0'() {
                    constraint(group: 'org', artifact: 'bar', version: '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. pkg/test/env/istio.go

    	TAG Variable = "TAG"
    
    	// VARIANT is the Docker variant to be used for images.
    	// nolint: revive, stylecheck
    	VARIANT Variable = "VARIANT"
    
    	// PULL_POLICY is the image pull policy to use when rendering templates.
    	// nolint: revive, stylecheck
    	PULL_POLICY Variable = "PULL_POLICY"
    
    	// ECHO_IMAGE is the image to use when deploying echo services.
    	// nolint: golint, revive, stylecheck
    	ECHO_IMAGE Variable = "ECHO_IMAGE"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/template_flags.go

    // Given the following flag values, a printer can be requested that knows
    // how to handle printing based on these values.
    type GoTemplatePrintFlags struct {
    	// indicates if it is OK to ignore missing keys for rendering
    	// an output template.
    	AllowMissingKeys *bool
    	TemplateArgument *string
    }
    
    // AllowedFormats returns slice of string of allowed GoTemplatePrint printing format
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top