- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,073 for initialize (0.13 sec)
-
test/initialize.go
Registered: 2024-06-12 16:32 - Last Modified: 2022-11-16 04:04 - 2.2K bytes - Viewed (0) -
pkg/controlplane/apiserver/admission/initializer.go
} } // Initialize checks the initialization interfaces implemented by each plugin // and provide the appropriate initialization data func (i *PluginInitializer) Initialize(plugin admission.Interface) { if wants, ok := plugin.(initializer.WantsQuotaConfiguration); ok { wants.SetQuotaConfiguration(i.quotaConfiguration) } if wants, ok := plugin.(initializer.WantsExcludedAdmissionResources); ok {
Registered: 2024-06-15 01:39 - Last Modified: 2024-04-29 21:28 - 1.8K bytes - Viewed (0) -
staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/initializer/initializer.go
authenticationInfoResolverWrapper: authenticationInfoResolverWrapper, serviceResolver: serviceResolver, } } // Initialize checks the initialization interfaces implemented by each plugin // and provide the appropriate initialization data func (i *PluginInitializer) Initialize(plugin admission.Interface) { if wants, ok := plugin.(WantsServiceResolver); ok { wants.SetServiceResolver(i.serviceResolver) }
Registered: 2024-06-15 01:39 - Last Modified: 2019-04-08 07:19 - 2.6K bytes - Viewed (0) -
staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer.go
authorizer: authz, featureGates: featureGates, stopCh: stopCh, restMapper: restMapper, } } // Initialize checks the initialization interfaces implemented by a plugin // and provide the appropriate initialization data func (i pluginInitializer) Initialize(plugin admission.Interface) { // First tell the plugin about drained notification, so it can pass it to further initializations.
Registered: 2024-06-15 01:39 - Last Modified: 2024-03-06 00:00 - 3K bytes - Viewed (0) -
pkg/kubeapiserver/admission/initializer.go
func NewPluginInitializer(cloudConfig []byte) *PluginInitializer { return &PluginInitializer{ cloudConfig: cloudConfig, } } // Initialize checks the initialization interfaces implemented by each plugin // and provide the appropriate initialization data func (i *PluginInitializer) Initialize(plugin admission.Interface) { if wants, ok := plugin.(WantsCloudConfig); ok { wants.SetCloudConfig(i.cloudConfig) }
Registered: 2024-06-15 01:39 - Last Modified: 2024-04-29 21:28 - 1.5K bytes - Viewed (0) -
platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java
} } /** * Initializes the native services to use the given user home directory to store native libs and other resources. Does nothing if already initialized. * * @param requestedFeatures Whether to initialize additional native libraries like jansi and file-events. */ private void initialize(File userHomeDir, EnumSet<NativeFeatures> requestedFeatures, NativeServicesMode mode) {
Registered: 2024-06-12 18:38 - Last Modified: 2024-05-29 06:47 - 23.9K bytes - Viewed (0) -
staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer_test.go
} func TestRESTMapperAdmissionPlugin(t *testing.T) { initializer := initializer.New(nil, nil, nil, &TestAuthorizer{}, nil, nil, &doNothingRESTMapper{}) wantsRESTMapperAdmission := &WantsRESTMapperAdmissionPlugin{} initializer.Initialize(wantsRESTMapperAdmission) if wantsRESTMapperAdmission.mapper == nil { t.Errorf("Expected REST mapper to be initialized but found nil") } }
Registered: 2024-06-15 01:39 - Last Modified: 2024-03-06 00:00 - 8.2K bytes - Viewed (0) -
platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessIntegrationTest.groovy
when: // start a build with a IsolationMode.PROCESS worker that will initialize the worker classpath cache and wait until the cache was initialized def block = server.expectAndBlock("waiting") def build = executer.withTasks("doWork").start() block.waitForAllPendingCalls() // simulate another "build" that tries to initialize the cache as well before recognizing that it has been done already
Registered: 2024-06-12 18:38 - Last Modified: 2024-01-10 15:52 - 4.3K bytes - Viewed (0) -
cmd/server-main.go
// Initialize config system. if err := globalConfigSys.Init(newObject); err != nil { if configRetriableErrors(err) { return fmt.Errorf("Unable to initialize config system: %w", err) } // Any other config errors we simply print a message and proceed forward. configLogIf(ctx, fmt.Errorf("Unable to initialize config, some features may be missing: %w", err)) } return nil }
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-04 15:12 - 34.5K bytes - Viewed (3) -
tensorflow/c/experimental/saved_model/core/revived_types/restored_resource.h
// create_resource - Non owning pointer to the create_resource function // associated with this object. Must be NON-NULL. // initialize - Non owning pointer to the initialize function associated with // this object. Must be NON-NULL. // destroy_resource - Non owning pointer to the destroy_resource function
Registered: 2024-06-16 05:45 - Last Modified: 2020-09-23 04:49 - 4.6K bytes - Viewed (0)