Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for reregistering (0.22 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            when:
            container.remove(d)
    
            then:
            // Not fired when unknown object removed
            0 * action._
        }
    
        def "queries provider for element when registering action for all elements in a collection"() {
            containerAllowsExternalProviders()
            def action = Mock(Action)
            def provider1 = Mock(ProviderInternal)
            def provider2 = Mock(ProviderInternal)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	}
    	sort.Strings(paths)
    	for _, path := range paths {
    		apiResource, resourceInfo, err := a.registerResourceHandlers(path, a.group.Storage[path], ws)
    		if err != nil {
    			errors = append(errors, fmt.Errorf("error in registering resource: %s, %v", path, err))
    		}
    		if apiResource != nil {
    			apiResources = append(apiResources, *apiResource)
    		}
    		if resourceInfo != nil {
    			resourceInfos = append(resourceInfos, resourceInfo)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Note that any inputs to such actions should be tracked, either by annotated properties on the action or by manually registering them with the task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Registering CUnit tests
    
    [source.multi-language-sample,c]
    .suite_operators.c
    ----
    include::{snippetsPath}/native-binaries/cunit/groovy/src/operatorsTest/c/suite_operators.c[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. tensorflow/BUILD

    # the library which loads libtensorflow_framework.so
    # (e.g. _pywrap_tensorflow_internal.so for Python, libtensorflow.so for the C
    # API) is responsible for registering ops with libtensorflow_framework.so. In
    # addition to this core set of ops, user libraries which are loaded (via
    # TF_LoadLibrary/tf.load_op_library) register their ops and kernels with this
    # shared object directly.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                return "tasks.withType<" + taskType + ">()";
            }
    
            @Override
            public String taskRegistration(String taskName, String taskType) {
                return "val " + taskName + " by tasks.registering(" + taskType + "::class)";
            }
    
            @Override
            public String taskConfiguration(String taskName, String taskType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The same is true for `link:{javadocPath}/org/gradle/api/tasks/TaskInputs.html#dir-java.lang.Object-[inputs.dir()]` when registering an input directory via the runtime API.
    
    [[lazypublishartifact_fileresolver]]
    ==== Using LazyPublishArtifact without a FileResolver is deprecated
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    === Configuring multiple container elements together
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Deprecations
    
    ==== Deprecated registration of plugin conventions
    
    Using plugin conventions has been emitting warnings since Gradle 8.2.
    Now, registering plugin conventions will also trigger deprecation warnings.
    For more information, see the <<deprecated_access_to_conventions, section about plugin convention deprecation>>.
    
    [[string_invoke]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	func() {
    		c.Lock()
    		defer c.Unlock()
    
    		if generation, ok := c.ready.checkAndReadGeneration(); generation != readyGeneration || !ok {
    			// We went unready or are already on a different generation.
    			// Avoid registering and starting the watch as it will have to be
    			// terminated immediately anyway.
    			return
    		}
    
    		// Update watcher.forget function once we can compute it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top