Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 308 for wastage (0.22 sec)

  1. samples/bookinfo/platform/kube/bookinfo-certificate.yaml

    metadata:
      name: letsencrypt-staging
      namespace: istio-system
    spec:
      acme:
        # The ACME server URL
        server: https://acme-staging-v02.api.letsencrypt.org/directory
        # Email address used for ACME registration
        email: stage@istio.io
        # Name of a secret used to store the ACME account private key
        privateKeySecretRef:
          name: letsencrypt-staging
        # Enable the HTTP-01 challenge provider
        http01: {}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 02 15:32:24 UTC 2019
    - 914 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/ProjectsPreparer.java

     *
     * <p>This stage includes running the build script for each project.</p>
     */
    public interface ProjectsPreparer {
        void prepareProjects(GradleInternal gradle);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 03:05:02 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

            GradleVersion versionObject = GradleVersion.version(version)
            // there is no public API for checking for RC version, this is an internal way
            return versionObject.snapshot || versionObject.stage?.stage == 3
        }
    
        private static GradleDistribution findRelease(ReleasedVersionDistributions releases, String requested) {
            GradleDistribution best = null
            for (GradleDistribution release : releases.all) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/SettingsPreparer.java

    /**
     * Responsible creating and configuring the `Settings` object for a newly created `Gradle` instance. The result is passed to a {@link org.gradle.configuration.ProjectsPreparer} to configure the projects.
     *
     * <p>This stage includes running the init scripts and settings script.</p>
     */
    public interface SettingsPreparer {
        void prepareSettings(GradleInternal gradle);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 03:05:02 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. samples/cicd/skaffold/README.md

        ```
    
    ## References
    
    - Github: [github.com/GoogleContainerTools/skaffold](https://github.com/GoogleContainerTools/skaffold)
    - Site: [skaffold.dev](https://skaffold.dev/)
    
    ### TODO
    
    - Add build and test stage for images in istiod (pilot and proxy)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 12:12:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/scripts/CompileScriptBuildOperationType.java

            /**
             * The build script backing language.
             * The language should be upper case. E.g GROOVY
             * */
            String getLanguage();
    
            /**
             * The compile stage as a descriptive String.
             * Build scripts can be processed in multiple stages, depending on the language.
             * Groovy backed build scripts are processed in two stages.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.patchelf/build_patchelf.sh

    apt-get update
    apt-get -y build-dep patchelf/jammy
    apt-get -b source patchelf/jammy
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 15:53:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/ActionExecutionWorker.java

    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.internal.worker.WorkerProcessContext;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * <p>The final stage of worker start-up. Takes care of executing the worker action.</p>
     *
     * <p>It is instantiated and called from {@link SystemApplicationClassLoaderWorker}.<p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/metrics/metrics.go

    	VolumeSchedulingStageFailed = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      VolumeSchedulerSubsystem,
    			Name:           "scheduling_stage_error_total",
    			Help:           "Volume scheduling stage error count",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"operation"},
    	)
    )
    
    // RegisterVolumeSchedulingMetrics is used for scheduler, because the volume binding cache is a library
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 23 12:18:16 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/scorer.go

    			return rawScoringFunction(maxUtilization)
    		}
    
    		return rawScoringFunction(requested * maxUtilization / capacity)
    	}
    	return func(classResources classResourceMap) int64 {
    		var nodeScore int64
    		// in alpha stage, all classes have the same weight
    		weightSum := len(classResources)
    		if weightSum == 0 {
    			return 0
    		}
    		for _, resource := range classResources {
    			classScore := f(resource.Requested, resource.Capacity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top