Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 403 for stage1 (0.14 sec)

  1. 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)
  2. 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)
  3. pkg/volume/csi/expander_test.go

    		secret                    *api.Secret
    	}{
    		{
    			name:    "when node expansion is not set",
    			success: false,
    		},
    		{
    			name:            "when nodeExpansion=on, nodeStage=on, volumePhase=staged",
    			nodeExpansion:   true,
    			nodeStageSet:    true,
    			success:         true,
    			fsVolume:        true,
    			deviceStagePath: "/foo/bar",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. releasenotes/notes/fix-se-stale-ep.yaml

    kind: bug-fix
    area: traffic-management
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - https://github.com/istio/istio/issues/35404
      - 35404
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 18:58:19 UTC 2021
    - 293 bytes
    - Viewed (0)
  5. 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)
  6. src/encoding/json/scanner.go

    func state1(s *scanner, c byte) int {
    	if '0' <= c && c <= '9' {
    		s.step = state1
    		return scanContinue
    	}
    	return state0(s, c)
    }
    
    // state0 is the state after reading `0` during a number.
    func state0(s *scanner, c byte) int {
    	if c == '.' {
    		s.step = stateDot
    		return scanContinue
    	}
    	if c == 'e' || c == 'E' {
    		s.step = stateE
    		return scanContinue
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    === Ivy Publish Plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K 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