Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for wastage (0.35 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                        val name = "Compile script ${scriptPath.substringAfterLast(File.separator)} ($stage)"
                        return BuildOperationDescriptor.displayName(name).name(name).details(object : Details {
                            override fun getStage(): String = stage
                            override fun getLanguage(): String = "KOTLIN"
                        })
                    }
                })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder.java

        public void addFirstLevelDependency(Dependency moduleDependency, DependencyGraphNode dependency) {
            builder.firstLevelDependency(dependency.getNodeId());
            //we don't serialise the module dependencies at this stage so we need to keep track
            //of the mapping module dependency <-> resolved dependency
            modulesMap.put(dependency.getNodeId(), moduleDependency);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

        private
        val afterProject = mutableListOf<IsolatedProjectAction>()
    
        override fun beforeProject(action: IsolatedProjectAction) {
            // TODO:isolated encode Application instances as part of the Environment to avoid waste
            beforeProject.add(withUserCodeApplicationContext(action))
        }
    
        override fun afterProject(action: IsolatedProjectAction) {
            afterProject.add(withUserCodeApplicationContext(action))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

        "java.compiler",
        "file.separator",
        "path.separator",
        "line.separator",
        "user.name",
        "user.home",
        "java.runtime.version"
        // Not java.io.tmpdir and user.dir at this stage
    )
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    class InstrumentedInputAccessListener(
        listenerManager: ListenerManager,
        configurationCacheProblemsListener: ConfigurationCacheProblemsListener,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    	globalBatchJobsMetrics.save(job.ID, ri)
    
    	delay := job.Replicate.Flags.Retry.Delay
    	if delay == 0 {
    		delay = batchReplJobDefaultRetryDelay
    	}
    	rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	hasTags := len(r.Flags.Filter.Tags) != 0
    	isMetadata := len(r.Flags.Filter.Metadata) != 0
    	isStorageClassOnly := len(r.Flags.Filter.Metadata) == 1 && strings.EqualFold(r.Flags.Filter.Metadata[0].Key, xhttp.AmzStorageClass)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

                "file.separator",
                "path.separator",
                "line.separator",
                "user.name",
                "user.home"
                // Not java.io.tmpdir and user.dir at this stage
            ]
        }
    
        def "system property set at the configuration phase is restored when running from cache"() {
            given:
            buildFile("""
                $propertySetter
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  7. RELEASE.md

        configure.
    *   `tf.divide` now honors the name field.
    *   Make metrics weight broadcasting more strict.
    *   Add new queue-like `StagingArea` and new ops: `stage` and `unstage`.
    *   Enable inplace update ops for strings on CPU. Speed up string concat.
    
    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Users can traverse all the pods that are in the scheduler and waiting in the permit stage through method `IterateOverWaitingPods`. In other words,  all waitingPods in scheduler can be obtained from any profiles. Before this commit, each profile could only obtain waitingPods within that profile. ([#124926](https://github.com/kubernetes/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    See the `link:{groovyDslPath}/org.gradle.api.file.ProjectLayout.html[ProjectLayout]` interface for details.
    
    Note that, at this stage, Gradle will not print deprecation warnings if you still use `Project.buildDir`.
    We know this is a big change and want to give time for authors of major plugins to move away from its usage first.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    	}
    
    	// queue replication heal in a goroutine to avoid holding up mrf save routine
    	go func() {
    		for vID, e := range mrfRec.Entries {
    			ctx, cancel := context.WithTimeout(p.ctx, time.Second) // Do not waste more than a second on this.
    
    			oi, err := p.objLayer.GetObjectInfo(ctx, e.Bucket, e.Object, ObjectOptions{
    				VersionID: vID,
    			})
    			cancel()
    			if err != nil {
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top