Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,124 for reprocess (0.22 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/type/ModelTypes.java

            ModelType<?> type;
            while ((type = queue.poll()) != null) {
                // Do not process Object's or GroovyObject's methods
                Class<?> rawClass = type.getRawClass();
                if (rawClass.equals(Object.class) || rawClass.equals(GroovyObject.class)) {
                    continue;
                }
                // Do not reprocess
                if (!seenTypes.add(type)) {
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/flagalloc.go

    		remove[i] = remove[last]
    		remove[last] = nil
    		remove = remove[:last]
    		i-- // reprocess value at i
    	}
    
    	if len(remove) == 0 {
    		return
    	}
    
    	removeBlocks := f.newSparseSet(f.NumBlocks())
    	defer f.retSparseSet(removeBlocks)
    	for _, v := range remove {
    		removeBlocks.add(v.Block.ID)
    	}
    
    	// Process affected blocks, preserving value order.
    	for _, b := range f.Blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

                    // Fixes: https://github.com/gradle/gradle/issues/17572
                    // package-info classes cannot be passed as classes to reprocess to the Java compiler.
                    // Therefore, we need to recompile them every time anything changes if they are processed by an aggregating annotation processor.
                    spec.addClassToCompile(typeToReprocess);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            when:
            java "class Unrelated {}"
    
            then:
            succeeds "compileJava"
        }
    
        @Issue("https://github.com/micronaut-projects/micronaut-core/issues/6536")
        def "does not reprocess if nothing in the current sourceSet changed"() {
            given:
            withProcessor(new AnnotatedGeneratedClassProcessorFixture())
            javaTestSourceFile "@Bean class Test {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/decompose.go

    	// accumulate new LocalSlots in newNames for addition after the iteration.  This decomposition is for
    	// builtin types with leaf components, and thus there is no need to reprocess the newly create LocalSlots.
    	var toDelete []namedVal
    	var newNames []*LocalSlot
    	for i, name := range f.Names {
    		t := name.Type
    		switch {
    		case t.IsInteger() && t.Size() > f.Config.RegSize:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/shortcircuit.go

    						v.SetArg(j, phi.Args[j])
    					}
    				}
    			}
    			if phi.Uses != 0 {
    				phielimValue(phi)
    			} else {
    				phi.reset(OpInvalid)
    			}
    			i-- // v.moveTo put a new value at index i; reprocess
    		}
    
    		// We may have left behind some phi values with no uses
    		// but the wrong number of arguments. Eliminate those.
    		for _, v := range b.Values {
    			if v.Uses == 0 {
    				v.reset(OpInvalid)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		// Fill the dsw to contains volumes and pods.
    		dswp.findAndAddNewPods()
    		reconcileASW(fakeASW, fakeDSW, t)
    
    		func() {
    			tc.resize(t, pv, pvc, dswp)
    
    			resizeRequiredVolumes := reprocess(dswp, uniquePodName, fakeDSW, fakeASW, *pv.Spec.Capacity.Storage())
    
    			tc.verify(t, resizeRequiredVolumes, uniqueVolumeName)
    		}()
    	}
    }
    
    func TestCheckVolumeSELinux(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    ----
    include::{snippetsPath}/java/incrementalAnnotationProcessing/groovy/processor/src/main/java/org/gradle/ServiceRegistryProcessor.java[tag=aggregating-annotation-processor]
    ----
    
    Gradle will always reprocess (but not recompile) all annotated files that the processor was registered for.
    Gradle will always recompile any files the processor generates.
    
    === State of support in popular annotation processors
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

        TF_RETURN_IF_ERROR(
            HandleNode(n, /*should_revisit=*/nullptr, use_optimistic_mode));
        if (n->IsNextIteration()) {
          // If this is a backedge for a merge node then remember to reprocess the
          // merge the next time we run.
          for (const Edge* e : n->out_edges()) {
            if (e->dst()->IsMerge()) {
              should_revisit[e->dst()->id()] = true;
            }
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/groovy/buildSrc/src/main/java/UrlProcess.java

    import org.gradle.api.tasks.TaskAction;
    // tag::custom-task-implementation[]
    import org.gradle.api.tasks.options.Option;
    import org.gradle.api.tasks.options.OptionValues;
    
    public abstract class UrlProcess extends DefaultTask {
        private String url;
        private OutputType outputType;
    
        @Input
        @Option(option = "http", description = "Configures the http protocol to be allowed.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top