Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 284 for replaced (0.12 sec)

  1. maven-core/src/site/apt/artifact-handlers.apt

      (classifier, extension, language) and how to manage it as dependency (add to classpath, include dependencies).
    
      They are replaced in Maven 4 with Maven 4 API Core's {{{../api/maven-api-core/apidocs/org/apache/maven/api/Type.html}Dependency Types}},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 06:12:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ScopedListenerManager.java

         * However, the reverse is not true:
         * events broadcast in the parent are not received by the listeners in the children.
         * The child inherits the loggers of its parent, though these can be replaced.
         *
         * @return The child
         */
        ScopedListenerManager createChild(Class<? extends Scope> scope);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

        /**
         * Read back an object from the provided stream that has been serialized by a call to {@link #send(Object, java.io.OutputStream)}. Any {@link Throwable} that cannot be de-serialized (for whatever
         * reason) will be replaced by a {@link PlaceholderException}.
         *
         * @param inputSteam stream to read the object from
         * @param classLoader loader used to load exception classes
         * @return the de-serialized object
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize.mlir

        %7 = "quantfork.dcast"(%6) : (tensor<1x3x!quant.uniform<i8:f32, 1.000000e-03:-3>>) -> tensor<1x3xf32>
        return %7 : tensor<1x3xf32>
      }
    // Test that the inputs and output of the tf.XlaCallModule op has been replaced
    // by quantized types, and the corresponding quantfork.dcast ops that turned
    // those quantized types back to float types are removed.
    // CHECK: %[[CONST_0:.+]] = stablehlo.constant dense<1.000000e+00> : tensor<4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 01:38:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

        /**
         * Returns a copy of this collection, with the given collection replaced with the value returned by the given supplier.
         *
         * This is used to deal with the case where a mutable collection may be added to itself. This is intended to become an error at some point.
         */
        FileCollectionInternal replace(FileCollectionInternal original, Supplier<FileCollectionInternal> supplier);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/v1/default_plugins.go

    	disabledPlugins := sets.New[string]()
    	enabledCustomPlugins := make(map[string]pluginIndex)
    	// replacedPluginIndex is a set of index of plugins, which have replaced the default plugins.
    	replacedPluginIndex := sets.New[int]()
    	var disabled []v1.Plugin
    	for _, disabledPlugin := range customPluginSet.Disabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

            configurationCacheRunLenient()
    
            then:
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                // TODO when implemented, this assertion should be replaced with the commented one:
                inputs.expect(allOf(startsWith("Plugin class 'SneakyPluginA': file '${FileUtils.testFileName}'"), containsString(FileUtils.testFileName)))
                /*
                pluginClasses.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/runtime/pprof/label.go

    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    // labelMap is the representation of the label set held in the context type.
    // This is an initial implementation, but it will be replaced with something
    // that admits incremental immutable modification more efficiently.
    type labelMap map[string]string
    
    // String satisfies Stringer and returns key, value pairs in a consistent
    // order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

     * there is a class-level lower bound for both versions.
     *
     * In addition, in version 6.6 the deprecated {@code DependencySubstitutions#with(ComponentSelector)} method
     * was removed, to be replaced by {@code #using(ComponentSelector)} so there are 2 versions of tests
     * present using either of those methods - pre and post Gradle 6.6.  And when the TAPI or Gradle versions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    	//      Atomic lists will be entirely replaced when updated. This extension
    	//      may be used on any type of list (struct, scalar, ...).
    	// 2) `set`:
    	//      Sets are lists that must not have multiple items with the same value. Each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top