Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,141 for below (0.18 sec)

  1. pkg/test/framework/test.go

    	// it's possible to have 1 kube cluster then 1 non-kube cluster (vm for example)
    	if t.requiredMinClusters > 0 && len(t.s.Environment().Clusters()) < t.requiredMinClusters {
    		t.goTest.Skipf("Skipping %q: number of clusters %d is below required min %d",
    			t.goTest.Name(), len(t.s.Environment().Clusters()), t.requiredMinClusters)
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/runtime/race_arm64.s

    // Callee-saved registers are: R19...R28.
    // Temporary registers are: R9...R15
    // SP must be 16-byte aligned.
    
    // When calling racecalladdr, R9 is the call target address.
    
    // The race ctx, ThreadState *thr below, is passed in R0 and loaded in racecalladdr.
    
    // Darwin may return unaligned thread pointer. Align it. (See tls_arm64.s)
    // No-op on other OSes.
    #ifdef TLS_darwin
    #define TP_ALIGN	AND	$~7, R0
    #else
    #define TP_ALIGN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    === Tooling support
    
    Testing Gradle plugins, both manually and automatically, is simplified with the appropriate tools.
    The table below provides a summary of each testing approach.
    You can choose any test framework you're comfortable with.
    
    For detailed explanations and code examples, refer to the specific sections below:
    
    [cols="20%,80%",options="header"]
    |======================
    |Test type                               |Tooling support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

       * canonical forms:
       *
       * <ul>
       *   <li>[start..end)
       *   <li>[start..+∞)
       *   <li>(-∞..end) (only if type {@code C} is unbounded below)
       *   <li>(-∞..+∞) (only if type {@code C} is unbounded below)
       * </ul>
       */
      public Range<C> canonical(DiscreteDomain<C> domain) {
        checkNotNull(domain);
        Cut<C> lower = lowerBound.canonical(domain);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                        && versionRangeResult.getVersionConstraint().getRange() != null
                        && versionRangeResult.getVersionConstraint().getRange().getUpperBound() == null) {
                    // Message below is checked for in the MNG-2199 core IT.
                    throw new UnresolvableModelException(
                            String.format(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/settings.md

    ## Environment Variables
    
    !!! tip
        If you already know what "environment variables" are and how to use them, feel free to skip to the next section below.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/grappler/grappler.h

    //   * `void* ext` is a free-form field that can be populated by
    //     a plugin in `TP_*` structs or potential future extension points .
    //
    // Example usage:
    //
    //   /* Sample TensorFlow code below, exact implementation might differ. */
    //   // Version checking uses `struct_size`. It should be set both by core
    //   // and the plugin.
    //   TP_OptimizerRegistrationParams params{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    include::sample[dir="snippets/java/quickstart/groovy", files="build.gradle[tags=use-plugin]"]
    ====
    
    [[sec:java_tasks]]
    == Tasks
    
    The Java plugin adds a number of tasks to your project, as shown below.
    
    `compileJava` — link:{groovyDslPath}/org.gradle.api.tasks.compile.JavaCompile.html[JavaCompile]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/site/apt/index.apt

       ** parent resolution until {{{./super-pom.html}super-pom}}
    
       ** inheritance assembly (see {{{./index.html#Inheritance_Assembly}below}})
    
       ** model interpolation (see {{{./index.html#Model_Interpolation}below}})
    
       ** url normalization: <<<UrlNormalizer>>> ({{{./apidocs/org/apache/maven/model/path/UrlNormalizer.html}javadoc}}),
       with its <<<DefaultUrlNormalizer>>> implementation
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

        elementsPlus.add(AFTER_LAST);
        elementsPlus.add(AFTER_LAST_2);
        return Ordering.explicit(Lists.newArrayList(elementsPlus));
      }
    
      /*
       * All the ContiguousSet generators below manually reject nulls here. In principle, we'd like to
       * defer that to Range, since it's ContiguousSet.create() that's used to create the sets. However,
       * that gets messy here, and we already have null tests for Range.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top