Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for changedTo (0.39 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            checkExecuteTransformWorkOperations(getExecutePlannedStepOperations(1).first(), ["UP-TO-DATE"])
    
            when:
            withBuildCache().run ":consumer:resolve", "-DproducerContent=changed"
            then:
            executedAndNotSkipped(":consumer:resolve")
    
            result.groupedOutput.transform("MakeGreen")
                .assertOutputContains("processing [producer.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. src/go/build/build.go

    			root := ctxt.joinPath(ctxt.GOROOT, "src")
    			if sub, ok := ctxt.hasSubdir(root, p.Dir); ok && !inTestdata(sub) {
    				p.Goroot = true
    				p.ImportPath = sub
    				p.Root = ctxt.GOROOT
    				setPkga() // p.ImportPath changed
    				goto Found
    			}
    		}
    		all := ctxt.gopath()
    		for i, root := range all {
    			rootsrc := ctxt.joinPath(root, "src")
    			if sub, ok := ctxt.hasSubdir(rootsrc, p.Dir); ok && !inTestdata(sub) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		modify: func(new *storage.CSIDriver) {
    			new.Spec.RequiresRepublish = &requiresRepublish
    		},
    	}, {
    		name: "StorageCapacity changed",
    		modify: func(new *storage.CSIDriver) {
    			new.Spec.StorageCapacity = &notStorageCapacity
    		},
    	}, {
    		name: "SELinuxMount changed",
    		modify: func(new *storage.CSIDriver) {
    			new.Spec.SELinuxMount = &notSELinuxMount
    		},
    	}, {
    		name: "change PodInfoOnMount",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            when:
            run("app:resolveView")
    
            then:
            assertTransformationsExecuted()
            outputContains("result = [app.txt, lib.jar.txt, common.jar.txt]")
        }
    
        def "transform with changed set of dependencies are re-executed"() {
            given:
            setupBuildWithSingleStep()
    
            when:
            run ":app:resolveGreen"
    
            then:
            assertTransformationsExecuted(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Before using a configuration cache entry, Gradle checks that none of the "build configuration inputs", such as build scripts, for the entry have changed.
    If a build configuration input has changed, Gradle will not use the entry and will run the configuration phase again as above, saving the result for later reuse.
    
    Build configuration inputs include:
    
    - Init scripts
    - Settings scripts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Consider the process of compilation.
    Once your source files have been compiled, there should be no need to recompile them unless something has changed that affects the output, such as the modification of a source file or the removal of an output file.
    And compilation can take a significant amount of time, so skipping the step when it’s not needed saves a lot of time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When `libUtil` is changed, Gradle will need to recompile or relink `LinuxApp` and `WindowsApp`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/time/time.go

    // the year -292277022399.
    //
    // All this is opaque to clients of the API and can be changed if a
    // better implementation presents itself.
    
    const (
    	// The unsigned zero year for internal calculations.
    	// Must be 1 mod 400, and times before it will not compute correctly,
    	// but otherwise can be changed at will.
    	absoluteZeroYear = -292277022399
    
    	// The year of the zero Time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

      }
    
      /** Remove each element in an iterable from a set. */
      static boolean removeAllImpl(Set<?> set, Iterator<?> iterator) {
        boolean changed = false;
        while (iterator.hasNext()) {
          changed |= set.remove(iterator.next());
        }
        return changed;
      }
    
      static boolean removeAllImpl(Set<?> set, Collection<?> collection) {
        checkNotNull(collection); // for GWT
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    				proxier.logger.Error(err, "Failed to add IPVS service", "serviceName", svcName)
    				return err
    			}
    		} else {
    			// IPVS service was changed, update the existing one
    			// During updates, service VIP will not go down
    			proxier.logger.V(3).Info("IPVS service was changed", "serviceName", svcName)
    			if err := proxier.ipvs.UpdateVirtualServer(vs); err != nil {
    				proxier.logger.Error(err, "Failed to update IPVS service")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top