Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for vendoring (0.13 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationRendererProvider.kt

    }
    
    public typealias KtSymbolDeclarationRendererProvider = KaSymbolDeclarationRendererProvider
    
    /**
     * Provides services for rendering Symbols and Types into the Kotlin strings
     */
    public interface KaSymbolDeclarationRendererMixIn : KaSessionMixIn {
        /**
         * Render symbol into the representable Kotlin string
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/PropertyReportRendererTest.groovy

            then:
            assert containsLine(out.toString(), 'prop: ' +
                'class org.gradle.api.tasks.diagnostics.internal.PropertyReportRendererTest$RenderFailedValue ' +
                '[Rendering failed]')
        }
    
        private static class RenderFailedValue {
            @Override
            String toString() {
                throw new UnsupportedOperationException("You cannot toString me!")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 24 15:02:02 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. architecture/environments/operator.md

    ## K8s controller
    
    TODO(rcernich).
    
    ## Manifest creation
    
    Manifest rendering is a multi-step process, shown in the figure below. ![rendering
    process](images/operator_render_flow.svg) The example in the figure shows the rendering being triggered by a CLI `mesh`
    command with a `IstioOperatorSpec` CR passed to it from a file; however, the same rendering steps would occur when an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/interface.go

    	WithNamespace bool
    	WithKind      bool
    	Wide          bool
    	ShowLabels    bool
    	Kind          schema.GroupKind
    	ColumnLabels  []string
    
    	SortBy string
    
    	// indicates if it is OK to ignore missing keys for rendering an output template.
    	AllowMissingKeys bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 00:36:07 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/MutableComponentVariant.java

        void addDependency(String group, String module, VersionConstraint versionConstraint, List<ExcludeMetadata> excludes, String reason, ImmutableAttributes attributes, List<? extends Capability> requestedCapabilities, boolean endorsing, @Nullable IvyArtifactName artifact);
    
        List<ComponentVariant.DependencyConstraint> getDependencyConstraints();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. maven-slf4j-provider/pom.xml

      <name>Maven SLF4J Simple Provider</name>
      <description>Maven SLF4J provider based on SLF4J's simple provider, extended to support Maven styled colors
        for levels and stacktrace rendering.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate.go

    func RenderToDir(manifests name.ManifestMap, outputDir string, dryRun bool, l clog.Logger) error {
    	l.LogAndPrintf("Component dependencies tree: \n%s", helmreconciler.InstallTreeString())
    	l.LogAndPrintf("Rendering manifests to output dir %s", outputDir)
    	return renderRecursive(manifests, helmreconciler.InstallTree, outputDir, dryRun, l)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/NotificationsIntegrationTest.groovy

            fails()
    
            then:
            errorOutput.contains("Option org.gradle.welcome doesn't accept value 'foo'. Possible values are [ONCE, NEVER]")
        }
    
        def "abort rendering welcome message using configuration property"() {
            when:
            propertiesFile << "org.gradle.welcome=never"
            succeeds()
    
            then:
            outputDoesNotContain(welcomeMessage)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/exceptions/StyledException.java

     * <p>For example: This is an &lt;Failure&gt;error&lt;/Failure&gt;</p>
     * <p>It's worth noting that {@link #getMessage()} would return a non-rendered text,
     * so that tooling using the exception messages are not concerned with rendering issues.
     * </p>
     */
    public class StyledException extends GradleException {
        private final static Logger LOGGER = Logging.getLogger(StyledException.class);
    
        // Keep only the outermost style
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 06 16:25:37 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10DiagnosticProvider.kt

    import org.jetbrains.kotlin.diagnostics.Diagnostic
    import org.jetbrains.kotlin.diagnostics.DiagnosticFactory
    import org.jetbrains.kotlin.diagnostics.UnboundDiagnostic
    import org.jetbrains.kotlin.diagnostics.rendering.DefaultErrorMessages
    import org.jetbrains.kotlin.psi.KtElement
    import org.jetbrains.kotlin.psi.KtFile
    import kotlin.reflect.KClass
    
    internal class KaFe10DiagnosticProvider(
        override val analysisSession: KaFe10Session
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top