Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 244 for reregistering (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

    import static org.apache.maven.api.ExtensibleEnums.language;
    
    /**
     * Language.
     * <p>
     * This extensible enum has two defined values, {@link #NONE} and {@link #JAVA_FAMILY},
     * but can be extended by registering a {@code org.apache.maven.api.spi.LanguageProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
     * @since 4.0.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/dependencyConfigurationSchema.kt

        registerAnalysisSchemaComponent(component)
        ifConversionSupported {
            registerObjectConversionComponent(component)
        }
    }
    
    
    /**
     * Introduces functions for registering dependencies, such as `implementation(...)`, as member functions of
     * types with getters returning [DependencyCollector] in the schema.
     * Resolves such functions at runtime, if used with object conversion.
     */
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/mlir_graph_optimization_pass.h

    //   module in case of success. Do not commit any changes in case of failures,
    //   let the rest of the pipeline run.
    enum class MlirOptimizationPassState { Disabled, Enabled, FallbackEnabled };
    
    // An API for registering MLIR ModulePass with the Tensorflow runtime. These
    // passes are running only for function graphs built by Tensorflow V2 and
    // instantiated by the process_function_library_runtime (see
    // FunctionOptimizationPass for details).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 22:53:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/build.gradle.kts

        mostRecent = moduleIdentity.releasedVersions.map { it.mostRecentRelease.version }
        mostRecentSnapshot = moduleIdentity.releasedVersions.map { it.mostRecentSnapshot.version }
    }
    
    val copyTestedVersionsInfo by tasks.registering(Copy::class) {
        from(rootProject.layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties"))
        from(rootProject.layout.projectDirectory.file("gradle/dependency-management/kotlin-versions.properties"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/plugin/v1beta1/api.go

    	// supported by the Kubelet registry
    	errUnsupportedVersion = "requested API version %q is not supported by kubelet. Supported version is %q"
    	// errInvalidResourceName is the error raised when a device plugin is registering
    	// itself with an invalid ResourceName
    	errInvalidResourceName = "the ResourceName %q is invalid"
    	// errBadSocket is the error raised when the registry socket path is not absolute
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 11:05:20 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/ir/Passes.h

    //===----------------------------------------------------------------------===//
    // Registration
    //===----------------------------------------------------------------------===//
    
    /// Generate the code for registering passes.
    #define GEN_PASS_REGISTRATION
    #include "tensorflow/compiler/mlir/lite/quantization/ir/Passes.h.inc"
    
    }  // namespace quantfork
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

            ex.message == "Factory registration for '${fullyQualifiedNameOf(ManagedThingSpec)}' is invalid because it doesn't extend an interface with a default implementation"
        }
    
        def "fails when registering non-interface internal view"() {
            when:
            instanceFactory.register(ModelType.of(ThingSpec), new SimpleModelRuleDescriptor("thing"))
                .withInternalView(ModelType.of(Object))
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/apis.go

    				return fmt.Errorf("error in registering legacy API: %w", err)
    			}
    		} else {
    			// everything else goes to /apis
    			nonLegacy = append(nonLegacy, &apiGroupInfo)
    		}
    	}
    
    	if err := s.GenericAPIServer.InstallAPIGroups(nonLegacy...); err != nil {
    		return fmt.Errorf("error in registering group versions: %w", err)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ModuleIdentityExtension.kt

        abstract val promotionBuild: Property<Boolean>
    
        abstract val releasedVersions: Property<ReleasedVersionsDetails>
    
        fun createBuildReceipt() {
            val createBuildReceipt by tasks.registering(BuildReceipt::class) {
                this.version = ******@****.*** { it.version }
                this.baseVersion = ******@****.*** { it.baseVersion.version }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskRemovalIntegrationTest.groovy

                // need at least one task to execute anything
                task dummy
            """
    
            when:
            fails ("dummy")
    
            then:
            failure.assertHasCause("Registering actions on task removal is not supported.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top