Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 157 for INITIALIZING (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    [sidebar]
    _Training level_: **Beginner** +
    _Training time_: **55 minutes**
    
    The tutorial covers:
    
    <<part1_gradle_init#part1_begin,Part 1.>> Initializing the Project +
    <<part2_gradle_tasks#part2_begin,Part 2.>> Running Tasks +
    <<part3_gradle_dep_man#part3_begin,Part 3.>> Understanding Dependencies +
    <<part4_gradle_plugins#part4_begin,Part 4.>> Applying Plugins +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/webhook.go

    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	s.httpsMux = http.NewServeMux()
    	s.httpsServer = &http.Server{
    		Addr:      args.ServerOptions.HTTPSAddr,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/certificates.go

    	}
    	return w.Flush()
    }
    
    func valueOrNA(value string) string {
    	if value == "" {
    		return "NA"
    	}
    	return value
    }
    
    func certNotExpired(cert *Cert) bool {
    	// case where cert state is in either Initializing or Unavailable state
    	if cert.ExpirationTime == "" && cert.ValidFrom == "" {
    		return false
    	}
    	today := time.Now()
    	expDate, err := time.Parse(time.RFC3339, cert.ExpirationTime)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 16:38:16 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top