Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for rebuild (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

        def "task can have actions defined using Groovy script closures"() {
            given:
            settingsFile << """
                include 'a', 'b'
            """
            [file("a/build.gradle"), file("b/build.gradle")].each {
                it << """
                    tasks.register("some") {
                        doFirst {
                            println("FIRST")
                        }
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

    
    /**
     * Property delegate for registering new elements in the container.
     *
     * ```kotlin
     * tasks {
     *    val rebuild by registering {
     *        dependsOn("clean", "build")
     *    }
     * }
     * ```
     *
     * @param T the domain object type
     * @param C the concrete container type
     * @param action the configuration action
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    			}
    		}
    	}
    
    	// Remove all matched service subsets. When we rebuild clusters, we will rebuild the subset clusters as well.
    	// We can reconcile the actual subsets that are needed when we rebuild the clusters.
    	for _, matchedSvc := range services {
    		if subsetClusters[matchedSvc.Hostname.String()] != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. platforms/documentation/docs/README.md

    The flag `-PquickDocs` disables some slow documentation tasks, like creating the DSL reference or the single page user manual PDF or HTML.
    This will automatically enter continuous build and rebuild the documentation when you make changes. It takes 30-40 seconds to rebuild the documentation in "quick mode".
    
    If you really want to generate just the user manual, you can run:
    
        ./gradlew :docs:userguide
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

                    }
                    result.addException(e);
                    throw new ArtifactDescriptorException(result);
                }
    
                Model model;
    
                // TODO hack: don't rebuild model if it was already loaded during reactor resolution
                final WorkspaceReader workspace = session.getWorkspaceReader();
                if (workspace instanceof MavenWorkspaceReader) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    		"If set, used Kubernetes native Sidecar container support. Requires SidecarContainer feature flag.")
    
    	OptimizedConfigRebuild = env.Register("ENABLE_OPTIMIZED_CONFIG_REBUILD", true,
    		"If enabled, pilot will only rebuild config for resources that have changed").Get()
    
    	PassthroughTargetPort = env.Register("ENABLE_RESOLUTION_NONE_TARGET_PORT", true,
    		"If enabled, targetPort will be supported for resolution=NONE ServiceEntry").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                            .modelCache(DefaultModelCache.newInstance(session, false))
                            .build();
    
                    ModelBuilderResult modelResult = modelBuilder.build(modelRequest);
                    // ModelBuildingEx is thrown only on FATAL and ERROR severities, but we still can have WARNs
                    // that may lead to unexpected build failure, log them
                    if (!modelResult.getProblems().isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_plugin_test.go

    			if err != nil {
    				t.Fatalf("failed to save fake volume info file: %s", err)
    			}
    
    			// rebuild spec
    			rec, err := plug.ConstructVolumeSpec("test-pv", filepath.Dir(csiMounter.GetPath()))
    			if err != nil {
    				t.Fatal(err)
    			}
    			if rec.Spec == nil {
    				t.Fatal("nil volume.Spec constructed")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    		event = model.EventUpdate
    		mcsService = mcsService.DeepCopy()
    		if ic.updateIPs(mcsService, ips) {
    			needsFullPush = true
    		}
    	}
    
    	// Always force a rebuild of the endpoint cache in case this import caused
    	// a change to the discoverability policy.
    	ic.addOrUpdateService(nil, nil, mcsService, event, true)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repairip.go

    	services, err := r.serviceLister.List(labels.Everything())
    	if err != nil {
    		return fmt.Errorf("unable to refresh the service IP block: %v", err)
    	}
    
    	// Check every Service's ClusterIP, and rebuild the state as we think it should be.
    	for _, svc := range services {
    		key, err := cache.MetaNamespaceKeyFunc(svc)
    		if err != nil {
    			return err
    		}
    		err = r.syncService(key)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top