Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 558 for plan (0.04 sec)

  1. src/net/conf.go

    	switch runtime.GOOS {
    	// Historically on Windows and Plan 9 we prefer the
    	// cgo resolver (which doesn't use the cgo tool) rather than
    	// the go resolver. This is because originally these
    	// systems did not support the go resolver.
    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            assertEquals("1.0.1", session.getCurrentProject().getVersion());
    
            MavenExecutionPlan plan = calculateExecutionPlan(session, "clean", "install");
    
            List<MojoExecution> executions = getExecutions(plan);
    
            // [01] clean:clean
            // [02] modello:xpp3-writer
            // [03] modello:java
            // [04] modello:xpp3-reader
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import com.google.common.collect.LinkedHashMultimap;
    import com.google.common.collect.SetMultimap;
    import org.gradle.api.Action;
    import org.gradle.api.BuildCancelledException;
    import org.gradle.api.NonNullApi;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	return t
    }
    
    func (r *tileHashReader) ReadHashes(indexes []int64) ([]Hash, error) {
    	h := r.tr.Height()
    
    	tileOrder := make(map[Tile]int) // tileOrder[tileKey(tiles[i])] = i
    	var tiles []Tile
    
    	// Plan to fetch tiles necessary to recompute tree hash.
    	// If it matches, those tiles are authenticated.
    	stx := subTreeIndex(0, r.tree.N, nil)
    	stxTileOrder := make([]int, len(stx))
    	for i, x := range stx {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import org.gradle.api.file.FileTreeElement;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.internal.file.FileCollectionStructureVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/apply.go

    // - Enforces all version skew policies
    // - Asks the user if they really want to upgrade
    // - Makes sure the control plane images are available locally on the control-plane(s)
    // - Upgrades the control plane components
    // - Applies the other resources that'd be created with kubeadm init as well, like
    //   - Uploads the newly used configuration to the cluster ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

            // For tests in default method of interface,
            // we might not be able to get the implementation class directly.
            // In this case, we need to retrieve test plan to get the real implementation class.
            TestIdentifier current = testIdentifier;
            while (current != null) {
                if (isTestClassIdentifier(current)) {
                    return current;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    4. [[task_configuration_avoidance_guideline_validate_build_logic]] **Ensure a good plan is established for validating the build logic.** +
    Usually, a simple `build` task invocation should do the trick to validate your build logic.
    However, some builds may need additional verification — understand the behavior of your build and make sure you have a good verification plan.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. docs/tr/docs/features.md

    * **WebSocket** desteği.
    * **GraphQL** desteği.
    * Kullanım halinde arka plan işlevleri.
    * Başlatma ve kapatma eventleri(startup and shutdown).
    * Test sunucusu HTTPX üzerine kurulu.
    * **CORS**, GZip, Static dosyalar, Streaming responseları.
    * **Session and Cookie** desteği.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.internal.cc.base.serialize.service
    import org.gradle.internal.cc.base.serialize.withGradleIsolate
    import org.gradle.execution.plan.Node
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.initialization.BuildIdentifiedProgressDetails
    import org.gradle.initialization.BuildStructureOperationProject
    import org.gradle.initialization.GradlePropertiesController
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top