Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 733 for hand (0.38 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/CleanupTestDirectory.groovy

     * a test directory provider as a TestRule causes spock to swallow any test failures and the test directory
     * is cleaned up even for failed tests.  {@link CleanupTestDirectoryExtension} on the other hand, registers
     * an interceptor and listener which cleans up the test directory only when the test passes.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  Deserialization, on the other hand, is performed by a {@link org.gradle.internal.serialize.graph.DecodingProvider}.
     *  </p>
     *  <p>Both protocols are highly specialized and, as such, they are specified as Single Abstract Method interfaces.</p>
     *
     *  <h3>Codecs</h3>
     *  <p>A {@link org.gradle.internal.serialize.graph.Codec Codec} is an object that is both an <code>EncodingProvider</code> and a <code>DecodingProvider</code>.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

     * ```
     * fun test(l: List<String>) {
     *   l.get(1) // The symbol `get` has type `(Int) -> T` where is the type parameter declared in `List`.
     *            // On the other hand, a `KaCallableSignature` carries instantiated type information `(Int) -> String`.
     * }
     * ```
     *
     * Equality of [KaCallableSignature] is derived from its content.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/internal/DistributionLocatorIntegrationTest.groovy

        }
    
        /**
         * If this test fails, it means that the snapshot in `released-versions.json` is no longer available.
         * You need to update that entry with a recent snapshot by hand.
         */
        def "locates snapshot versions"() {
            expect:
            urlExist(locator.getDistributionFor(distributions.mostRecentReleaseSnapshot.version))
        }
    
        void urlExist(URI url) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 06:57:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. pkg/securitycontext/util.go

    			effectiveSc.WindowsOptions = &v1.WindowsSecurityContextOptions{}
    		}
    		if containerSc.WindowsOptions.GMSACredentialSpecName != nil || containerSc.WindowsOptions.GMSACredentialSpec != nil {
    			// both GMSA fields go hand in hand
    			effectiveSc.WindowsOptions.GMSACredentialSpecName = containerSc.WindowsOptions.GMSACredentialSpecName
    			effectiveSc.WindowsOptions.GMSACredentialSpec = containerSc.WindowsOptions.GMSACredentialSpec
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

      if (!matmul_op) return failure();
    
      // Gets the broadcasted output shape for tf.BatchMatMulV2Op. `shape_x` is the
      // shape of op's first/left-hand-side operand and `shape_y` is the shape of
      // op's second/right-hand-side operand.
      const auto get_broadcasted_shape =
          [&](ArrayRef<int64_t> shape_x, ArrayRef<int64_t> shape_y,
              SmallVectorImpl<int64_t>& result_shape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/VersionMappingStrategy.java

         * @param action the configuration action
         */
        <T> void variant(Attribute<T> attribute, T attributeValue, Action<? super VariantVersionMappingStrategy> action);
    
        /**
         * A short hand method to configure the variants which matches the provided Usage attribute.
         * This is the recommended way to configure the mapping strategy for the general case.
         * @param usage the usage to look for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go122.go

    // +build go1.22
    
    package aliases
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"go/types"
    )
    
    // Alias is an alias of types.Alias.
    type Alias = types.Alias
    
    // Rhs returns the type on the right-hand side of the alias declaration.
    func Rhs(alias *Alias) types.Type {
    	if alias, ok := any(alias).(interface{ Rhs() types.Type }); ok {
    		return alias.Rhs() // go1.23+
    	}
    
    	// go1.22's Alias didn't have the Rhs method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ScalaCompilerLoader.java

            if (className.startsWith("xsbti.")) {
                // We can't use the loadClass overload with two arguments because it's
                // protected, but we can do the same by hand (the classloader instance
                // from which we call resolveClass does not matter).
                Class<?> c = sbtLoader.loadClass(className);
                if (resolve) {
                    resolveClass(c);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/DynamicObject.java

     * provides a dynamic view of the functionality of an object and does not provide any decoration or extra functionality.
     * The {@link org.gradle.internal.extensibility.ExtensibleDynamicObject} implementation on the other hand does provide extra functionality.
     */
    public interface DynamicObject extends MethodAccess, PropertyAccess {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 11:50:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top