Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,073 for wrappy (0.17 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/internal/WrapperPluginAutoApplyActionIntegTest.groovy

        final wrapper = new WrapperTestFixture(testDirectory)
    
        def "can apply wrapper plugin dynamically"() {
            when:
            run 'tasks'
            then:
            output.contains("wrapper - Generates Gradle wrapper files.")
    
            when:
            run 'wrapper'
            then:
            wrapper.generated()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/raise-custom-ops.mlir

    // WRAPPED-NEXT: tf_executor.graph {
    // WRAPPED-NEXT:   tf_executor.island wraps "tf.Const"() <{value = dense<1.000000e+00> : tensor<186xf32>}> {device = ""} : () -> tensor<186xf32>
    // WRAPPED-NEXT:   tf_executor.island wraps "tf.Const"() <{value = dense<2.000000e+00> : tensor<186xf32>}> {device = ""} : () -> tensor<186xf32>
    // WRAPPED-NEXT:   tf_executor.island wraps "tfl.custom_tf"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestFailureProgressEventCrossVersionTest.groovy

            thrown(BuildException)
    
            // Extract and assert the wrapper failure
            collector.failures.size() == 1
            collector.failures[0] instanceof TestAssertionFailure
            def failure = collector.failures[0] as TestAssertionFailure
            failure.message == "This exception wraps an assertion error"
    
            // Extract and assert the wrapped failure
            failure.causes.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 17:52:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    	versionStr, err := kubeadmutil.KubernetesReleaseVersion(ciVersionLabel)
    	if err != nil {
    		return "", nil, errors.Wrapf(err, "Couldn't fetch latest %s from the internet", description)
    	}
    
    	ver, err := versionutil.ParseSemantic(versionStr)
    	if err != nil {
    		return "", nil, errors.Wrapf(err, "Couldn't parse latest %s", description)
    	}
    	return versionStr, ver, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Primitives.java

      }
    
      /**
       * Returns the corresponding wrapper type of {@code type} if it is a primitive type; otherwise
       * returns {@code type} itself. Idempotent.
       *
       * <pre>
       *     wrap(int.class) == Integer.class
       *     wrap(Integer.class) == Integer.class
       *     wrap(String.class) == String.class
       * </pre>
       */
      public static <T> Class<T> wrap(Class<T> type) {
        checkNotNull(type);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. src/crypto/cipher/gcm_test.go

    		}
    	}
    }
    
    var _ cipher.Block = (*wrapper)(nil)
    
    type wrapper struct {
    	block cipher.Block
    }
    
    func (w *wrapper) BlockSize() int          { return w.block.BlockSize() }
    func (w *wrapper) Encrypt(dst, src []byte) { w.block.Encrypt(dst, src) }
    func (w *wrapper) Decrypt(dst, src []byte) { w.block.Decrypt(dst, src) }
    
    // wrap wraps the Block interface so that it does not fulfill
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  7. tensorflow/c/conversion_macros.h

      inline const cpp_impl *unwrap(const wrapper *w) {                            \
        return reinterpret_cast<const cpp_impl *>(w);                              \
      }                                                                            \
                                                                                   \
      inline wrapper *wrap(cpp_impl *i) { return reinterpret_cast<wrapper *>(i); } \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 04 16:24:03 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/GroovyMethods.java

        private static final Set<Equivalence.Wrapper<Method>> OBJECT_METHODS = ImmutableSet.copyOf(
            Iterables.transform(
                Iterables.concat(
                    Arrays.asList(Object.class.getMethods()),
                    Arrays.asList(GroovyObject.class.getMethods())
                ), new Function<Method, Equivalence.Wrapper<Method>>() {
                    @Override
                    public Equivalence.Wrapper<Method> apply(@Nullable Method input) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Equivalence.java

       * that tests equivalence using their lengths:
       *
       * <pre>{@code
       * equiv.wrap("a").equals(equiv.wrap("b")) // true
       * equiv.wrap("a").equals(equiv.wrap("hello")) // false
       * }</pre>
       *
       * <p>Note in particular that an equivalence wrapper is never equal to the object it wraps.
       *
       * <pre>{@code
       * equiv.wrap(obj).equals(obj) // always false
       * }</pre>
       *
       * @since 10.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. pkg/scheduler/testing/wrappers.go

    	wrapper.SetName(s)
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) UID(s string) *ClaimParametersWrapper {
    	wrapper.SetUID(types.UID(s))
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) Namespace(s string) *ClaimParametersWrapper {
    	wrapper.SetNamespace(s)
    	return wrapper
    }
    
    func (wrapper *ClaimParametersWrapper) Shareable(value bool) *ClaimParametersWrapper {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top