Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for reregistering (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/credentialprovider/plugins.go

    	for ix := range keys {
    		stringKeys[ix] = keys[ix].String()
    	}
    	sort.Strings(stringKeys)
    
    	for _, key := range stringKeys {
    		provider := providers[key]
    		if provider.Enabled() {
    			klog.V(4).Infof("Registering credential provider: %v", key)
    			keyring.Providers = append(keyring.Providers, provider)
    		}
    	}
    
    	return keyring
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 22:01:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/cache/types.go

    //	                      Out                                    Out                            Out
    //
    // The pluginwatcher module follows strictly and sequentially this state machine for each *plugin name*.
    // e.g: If you are Registering a plugin foo, you cannot get a DeRegister call for plugin foo
    // until the Register("foo") call returns. Nor will you get a Validate("foo", "Different endpoint", ...)
    // call until the Register("foo") call returns.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. cmd/kubelet/app/options/globalflags.go

    	verflag.AddFlags(fs)
    	logs.AddFlags(fs, logs.SkipLoggingConfigurationFlags())
    }
    
    // normalize replaces underscores with hyphens
    // we should always use hyphens instead of underscores when registering kubelet flags
    func normalize(s string) string {
    	return strings.Replace(s, "_", "-", -1)
    }
    
    // register adds a flag to local that targets the Value associated with the Flag named globalName in global
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    func (s *GenericAPIServer) AddPostStartHookOrDie(name string, hook PostStartHookFunc) {
    	if err := s.AddPostStartHook(name, hook); err != nil {
    		klog.Fatalf("Error registering PostStartHook %q: %v", name, err)
    	}
    }
    
    // AddPreShutdownHook allows you to add a PreShutdownHook.
    func (s *GenericAPIServer) AddPreShutdownHook(name string, hook PreShutdownHookFunc) error {
    	if len(name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

     * <p>
     * This extensible enum has four defined values, {@link #MAIN_COMPILE}, {@link #MAIN_RUNTIME},
     * {@link #TEST_COMPILE} and {@link #TEST_RUNTIME}, but can be extended by registering a
     * {@code org.apache.maven.api.spi.PathScopeProvider}.
     * <p>
     * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
     * can be used as keys.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top