Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for reregistering (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/AbstractConfigurationCacheIntegrationTest.groovy

            normalizedOutput
                .replaceAll(/Received \d+ file system events .*\n/, '')
                .replaceAll(/Spent \d+ ms processing file system events since last build\n/, '')
                .replaceAll(/Spent \d+ ms registering watches for file system events\n/, '')
                .replaceAll(/Virtual file system .*\n/, '')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/build.gradle.kts

        implementation(project(":compiler:backend"))
        generatorClasspath(project(":analysis:analysis-api-fir:analysis-api-fir-generator"))
    }
    
    val generateCode by tasks.registering(NoDebugJavaExec::class) {
        val generatorRoot = "$projectDir/analysis/analysis-api-fir/analysis-api-fir-generator/src/"
    
        val generatorConfigurationFiles = fileTree(generatorRoot) {
            include("**/*.kt")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. testing/architecture-test/build.gradle.kts

        apiChangesDirectory = acceptedApiChangesDirectory
    }
    
    val ruleStoreDir = layout.projectDirectory.dir("src/changes/archunit-store")
    
    tasks {
        val reorderRuleStore by registering(ReorderArchUnitRulesTask::class) {
            ruleFile = ruleStoreDir.file("stored.rules").asFile
        }
    
        test {
            // Looks like loading all the classes requires more than the default 512M
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/test/groovy/org/gradle/plugin/software/internal/DefaultSoftwareTypeRegistryTest.groovy

            1 * metadataStore.getTypeMetadata(NotASoftwareTypeImpl) >> pluginTypeMetadata
            1 * pluginTypeMetadata.getPropertiesMetadata() >> []
    
            and:
            implementations.isEmpty()
        }
    
        def "registering the same plugin twice does not add two implementations"() {
            def pluginTypeMetadata = Mock(TypeMetadata)
            def modelTypeMetadata = Mock(TypeMetadata)
            def propertyMetadata = Mock(PropertyMetadata)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:29 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/extension/wasmplugin.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/util/sets"
    	_ "istio.io/istio/pkg/wasm" // include for registering wasm logging scope
    )
    
    var defaultConfigSource = &core.ConfigSource{
    	ConfigSourceSpecifier: &core.ConfigSource_Ads{
    		Ads: &core.AggregatedConfigSource{},
    	},
    	ResourceApiVersion: core.ApiVersion_V3,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            '''
    
            then:
            succeeds "fromAfterEvaluate"
    
            and:
            output.contains "value: from after evaluate and from container rule and from rule"
        }
    
        def "registering a creation rule for a task that is already defined using legacy DSL"() {
            when:
            buildFile << """
                class MyPlugin extends RuleSource {
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// +optional
    	BootstrapTokens []bootstraptokenv1.BootstrapToken `json:"bootstrapTokens,omitempty"`
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	// +optional
    	NodeRegistration NodeRegistrationOptions `json:"nodeRegistration,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    // output parameters.
    absl::Status InitStreamExecutorPlugin(void* dso_handle,
                                          std::string* device_type,
                                          std::string* platform_name);
    
    // Allow registering a StreamExecutor plugin using a function (used for
    // testing).
    absl::Status InitStreamExecutorPlugin(SEInitPluginFn init_fn,
                                          std::string* device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler.go

    // WithExtenders sets extenders for the Scheduler
    func WithExtenders(e ...schedulerapi.Extender) Option {
    	return func(o *schedulerOptions) {
    		o.extenders = e
    	}
    }
    
    // FrameworkCapturer is used for registering a notify function in building framework.
    type FrameworkCapturer func(schedulerapi.KubeSchedulerProfile)
    
    // WithBuildFrameworkCapturer sets a notify function for getting buildFramework details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    No sub-projects
    """
        }
    
        def "project project structure and software types for multi-project build using declarative dcl"() {
            given: "a build-logic build registering an ecosystem plugin defining several software types via several plugins"
            file("build-logic/src/main/java/com/example/restricted/LibraryExtension.java") << """
                package com.example.restricted;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top