Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for realized (0.15 sec)

  1. pkg/controller/history/controller_history.go

    	}
    	return br[i].Revision < br[j].Revision
    }
    
    func (br byRevision) Swap(i, j int) {
    	br[i], br[j] = br[j], br[i]
    }
    
    // Interface provides an interface allowing for management of a Controller's history as realized by recorded
    // ControllerRevisions. An instance of Interface can be retrieved from NewHistory. Implementations must treat all
    // pointer parameters as "in" parameter, and they must not be mutated.
    type Interface interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

        }
    
        void realize() {
            registry.realizeNode(path)
        }
    
        void selfClose() {
            registry.atState(path, ModelNode.State.SelfClosed)
        }
    
        ModelMap<T> realizeAsModelMap() {
            registry.realize(path, modelMapType)
        }
    
        T realizeChild(String name) {
            registry.realize(path.child(name), itemType)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/18622")
        def "custom Test tasks eagerly realized prior to Java and Test Suite plugin application do not fail to be configured when combined with test suites"() {
            buildFile << """
                tasks.withType(Test) {
                    // realize all test tasks
                }
                tasks.register("mytest", Test)
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    - `TaskContainer.clear()`
    - `TaskContainer.iterator().remove()`
    
    Additionally, the following deprecated functionality now results in an error:
    
    - Replacing a task that has already been realized.
    - Replacing a registered (unrealized) task with an incompatible type. A compatible type is the same type or a sub-type of the registered type.
    - Replacing a task that has never been registered.
    
    ==== Replaced and Removed APIs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

        }
    
        public static Object realize(ModelRegistry modelRegistry, String path) {
            return modelRegistry.realize(ModelPath.nonNullValidatedPath(path), ModelType.UNTYPED);
        }
    
        public static <T> T realize(ModelRegistry modelRegistry, String path, Class<T> type) {
            return modelRegistry.realize(ModelPath.nonNullValidatedPath(path), ModelType.of(type));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadata.java

     *
     * @see DefaultMavenModuleResolveMetadata
     */
    public class RealisedMavenModuleResolveMetadata extends AbstractRealisedModuleComponentResolveMetadata implements MavenModuleResolveMetadata {
    
        /**
         * Factory method to transform a {@link DefaultMavenModuleResolveMetadata}, which is lazy, into a realised version.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

    //===----------------------------------------------------------------------===//
    // StableHLO+TFL --> VHLO+TFL Ops
    //===----------------------------------------------------------------------===//
    
    // Wrap op result uses in an unrealized cast to create a cast to buffer
    // any type changes to result, and apply type converter to result:
    //   result = op(V0)
    //   V1     = op2(result)
    //   ==>
    //   result = op(V0)
    //   V1     = unrealized_cast(result)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

            // Configure task through suite
            testing {
                suites {
                    test {
                        useJUnitJupiter()
                        targets.all {
                            // explicitly realize the task now to cause this configuration to run now
                            testTask.get().configure {
                                options {
                                    includeTags 'fast'
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    ModelMap<NativeBinarySpecInternal> projectBinaries = modelRegistry.realize("binaries", ModelTypes.modelMap(NativeBinarySpecInternal.class));
                    ModelMap<Task> projectTasks = modelRegistry.realize("tasks", ModelTypes.modelMap(Task.class));
                    NativeBinarySpecInternal dependentBinary = projectBinaries.get(dependent.getProjectScopedName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. pkg/kubemark/controller.go

    	kubemarkController.nodeGroupQueueSizeLock.Lock()
    	defer kubemarkController.nodeGroupQueueSizeLock.Unlock()
    	realSize, err := kubemarkController.GetNodeGroupSize(nodeGroup)
    	if err != nil {
    		return realSize, err
    	}
    	return realSize + kubemarkController.nodeGroupQueueSize[nodeGroup], nil
    }
    
    // SetNodeGroupSize changes the size of node group by adding or removing nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
Back to top