Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for INITIALIZING (0.44 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    )
    
    var (
    	htmlTemplates    *template.Template // Lazily loaded templates
    	htmlTemplateInit sync.Once
    )
    
    // getHTMLTemplates returns the set of HTML templates used by pprof,
    // initializing them if necessary.
    func getHTMLTemplates() *template.Template {
    	htmlTemplateInit.Do(func() {
    		htmlTemplates = template.New("templategroup")
    		addTemplates(htmlTemplates)
    		report.AddSourceTemplates(htmlTemplates)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. buildscripts/verify-healing-empty-erasure-set.sh

    }
    
    function check_online() {
    	if ! grep -q 'Status:' ${WORK_DIR}/dist-minio-*.log; then
    		echo "1"
    	fi
    }
    
    function purge() {
    	echo rm -rf "$1"
    }
    
    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. buildscripts/verify-healing.sh

    		test $foundFiles1 -eq $foundFiles2
    		v2=$?
    		[ $v1 == 0 -a $v2 == 0 ] && return 0
    		sleep 10
    	done
    	return 1
    }
    
    function purge() {
    	rm -rf "$1"
    }
    
    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		configCluster := opts.ClusterID == cluster.ID
    
    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    		log.Infof("Initializing Kubernetes service registry %q", options.ClusterID)
    		options.ConfigCluster = configCluster
    		kubeRegistry := NewController(client, options)
    		kubeController := &kubeController{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            then:
            succeeds "init"
            targetDir.file("settings.gradle.kts").assertIsFile()
            targetDir.file("build.gradle.kts").assertIsFile()
        }
    
        def "fails when initializing in a project directory of another build that contains a build script"() {
            when:
            containerDir.file("settings.gradle") << """
                rootProject.name = 'root'
                include('${targetDir.name}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        // First ensure that our classloaders are initializing the correct helper versions
        checkHelperVersion(getClass().getClassLoader(), "UnsafeAtomicHelper");
        checkHelperVersion(NO_UNSAFE, "SafeAtomicHelper");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top