Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 230 for langues (4.99 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/README.adoc

    In this sample, we are testing Java projects with JUnit5; however, this applies to other JVM languages as well.
    
    Concretely, we add a _convention plugin_ in `buildSrc` to share the integration test setup between multiple subprojects:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmLanguageUtilities.java

    import org.gradle.api.tasks.compile.AbstractCompile;
    
    /**
     * This class exposes a number of internal utilities for use by Gradle JVM plugins that use
     * types specific to Java and other JVM languages, such as {@link HasCompileOptions} which are
     * not available in the {@code platform-jvm} project and would otherwise be located on the
     * {@link JvmPluginServices} type.
     */
    public interface JvmLanguageUtilities {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:44:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/make.rc

    # DO NOT ADD ANY NEW CODE HERE.
    # The bootstrap+rm above are the final step of make.rc.
    # If something must be added, add it to cmd/dist's cmdbootstrap,
    # to avoid needing three copies in three different shell languages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    )
    
    // celReservedSymbols is a list of RESERVED symbols defined in the CEL lexer.
    // No identifiers are allowed to collide with these symbols.
    // https://github.com/google/cel-spec/blob/master/doc/langdef.md#syntax
    var celReservedSymbols = sets.NewString(
    	"true", "false", "null", "in",
    	"as", "break", "const", "continue", "else",
    	"for", "function", "if", "import", "let",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/limitranger/interfaces.go

    */
    
    package limitranger
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/admission"
    )
    
    // LimitRangerActions is an interface defining actions to be carried over ranges to identify and manipulate their limits
    type LimitRangerActions interface {
    	// MutateLimit is a pluggable function to set limits on the object.
    	MutateLimit(limitRange *corev1.LimitRange, kind string, obj runtime.Object) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

            hasItem("buildSrc.jar")
        }
    
        protected static Matcher<Iterable<? super File>> matchesProjectsSourceRoots(ProjectSourceRoots... projectSourceRoots) {
            return allOf(projectSourceRoots.findAll { !it.languages.isEmpty() }.collectMany { sourceRoots ->
    
                def languageDirs =
                    sourceRoots.sourceSets.collectMany { sourceSet ->
                        ["java", "kotlin"].collect { language ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. docs/en/overrides/main.html

          </a>
        </div>
        <div class="item">
          <a title="Build your next app with FastAPI and MongoDB" style="display: block; position: relative;" href="https://www.mongodb.com/developer/languages/python/python-quickstart-fastapi/?utm_campaign=fastapi_framework&utm_source=fastapi_sponsorship&utm_medium=web_referral" target="_blank">
            <span class="sponsor-badge">sponsor</span>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/TreeRangeMap.java

        }
      }
    
      @Override
      public void putCoalescing(Range<K> range, V value) {
        // don't short-circuit if the range is empty - it may be between two ranges we can coalesce.
        if (entriesByLowerBound.isEmpty()) {
          put(range, value);
          return;
        }
    
        Range<K> coalescedRange = coalescedRange(range, checkNotNull(value));
        put(coalescedRange, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/http.go

    </p>
    
    <h2>Event timelines for running goroutines</h2>
    {{range $i, $view := $}}
    {{if $view.Ranges}}
    {{if eq $i 0}}
    <p>
      Large traces are split into multiple sections of equal data size
      (not duration) to avoid overwhelming the visualizer.
    </p>
    {{end}}
    <ul>
    	{{range $index, $e := $view.Ranges}}
    		<li><a href="{{$view.URL $index}}">View trace by {{$view.Type}} ({{$e.Name}})</a></li>
    	{{end}}
    </ul>
    {{else}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java

    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Parses and evaluates version ranges encountered in dependency declarations.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface VersionRangeResolver extends Service {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top