Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 175 for INITIALIZING (0.59 sec)

  1. pkg/scheduler/framework/runtime/registry.go

    	}
    }
    
    // Registry is a collection of all available plugins. The framework uses a
    // registry to enable and initialize configured plugins.
    // All plugins must be in the registry before initializing the framework.
    type Registry map[string]PluginFactory
    
    // Register adds a new plugin to the registry. If a plugin with the same name
    // exists, it returns an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. operator/pkg/verifier/k8s_util.go

    		}
    	case appsv1.RollingUpdateDaemonSetStrategyType:
    		if daemonSet.Status.DesiredNumberScheduled <= 0 {
    			return fmt.Errorf("DaemonSet %s/%s is not ready. Initializing, no pods are running",
    				daemonSet.Namespace, daemonSet.Name)
    		} else if daemonSet.Status.NumberReady < daemonSet.Status.DesiredNumberScheduled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java

        protected Object activeThreadCountLock = new Object();
    
        protected AtomicLong accessCount = new AtomicLong(0);
    
        protected volatile CrawlerStatus status = CrawlerStatus.INITIALIZING;
    
        protected UrlFilter urlFilter;
    
        protected RuleManager ruleManager;
    
        protected IntervalController intervalController;
    
        protected Set<String> robotsTxtUrlSet = new LruHashSet<>(10000);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    [sidebar]
    _Training level_: **Intermediate** +
    _Training time_: **65 minutes**
    
    The tutorial covers:
    
    <<partr1_gradle_init#part1_begin,Part 1.>> Initializing the Project +
    <<partr2_build_lifecycle#part2_begin,Part 2.>> Understanding the Build Lifecycle +
    <<partr3_multi_project_builds#part3_begin,Part 3.>> Multi-Project Builds +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/names/controller_names.go

    //     2.1. [TODO] logging should use a canonical controller name when referencing a controller (Eg. Starting X, Shutting down X)
    //     2.2. [TODO] emitted events should have an EventSource.Component set to the controller name (usually when initializing an EventRecorder)
    //     2.3. [TODO] registering ControllerManagerMetrics with ControllerStarted and ControllerStopped
    //     2.4. [TODO] calling WaitForNamedCacheSync
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/sidecarinjector.go

    		}
    		watcher = inject.NewConfigMapWatcher(s.kubeClient, args.Namespace, configMapName, "config", "values")
    	} else {
    		log.Infof("Skipping sidecar injector, template not found")
    		return nil, nil
    	}
    
    	log.Info("initializing sidecar injector")
    
    	parameters := inject.WebhookParameters{
    		Watcher:      watcher,
    		Env:          s.environment,
    		Mux:          s.httpsMux,
    		Revision:     args.Revision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 20:39:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

     * <p>
     * ProjectBuilder internally uses native services.
     * <p>
     * The project isn't available until the subclass's {@code setup()} method because initializing it before then, would mean that we
     * would create a temporary project directory which didn't know about the class and method for which it was being created.
     */
    @CleanupTestDirectory
    @UsesNativeServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. pkg/volume/util/hostutil/fake_hostutil.go

    	MountPoints []mount.MountPoint
    	Filesystem  map[string]FileType
    
    	mutex sync.Mutex
    }
    
    // NewFakeHostUtil returns a struct that implements the HostUtils interface
    // for testing
    // TODO: no callers were initializing the struct with any MountPoints. Check
    // if those are still being used by any callers and if MountPoints still need
    // to be a part of the struct.
    func NewFakeHostUtil(fs map[string]FileType) *FakeHostUtil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/fix/cftype.go

    	disabled: false,
    }
    
    // Old state:
    //
    //	type CFTypeRef unsafe.Pointer
    //
    // New state:
    //
    //	type CFTypeRef uintptr
    //
    // and similar for other *Ref types.
    // This fix finds nils initializing these types and replaces the nils with 0s.
    func cftypefix(f *ast.File) bool {
    	return typefix(f, func(s string) bool {
    		return strings.HasPrefix(s, "C.") && strings.HasSuffix(s, "Ref") && s != "C.CFAllocatorRef"
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:25:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_var_init_by_const.cc

    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // A pass that removes `tf.AssignVariableOp(tf.VarHandleOp, tf.Const)` patterns
    // from the initializer function (type = "restore_op").
    //
    // Note: initializing values (`tf.Const`s) will be removed and this may result
    // in an information loss and uninitialized variable errors. Make sure that this
    // effect is desired (e.g. there is a `tf.RestoreV2Op` restoring the variables
    // instead).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 12:04:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top