Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tryCached (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                }
            };
        }
    
        private LocalComponentGraphResolveState getComponentState(Module module, ComponentIdentifier componentIdentifier) {
            LocalComponentGraphResolveState state = holder.tryCached(componentIdentifier);
            if (state == null) {
                state = createComponentState(module, componentIdentifier);
                holder.cache(state, shouldCacheResolutionState());
            }
            return state;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

         *
         * @see org.gradle.api.internal.artifacts.ivyservice.moduleconverter.DefaultRootComponentMetadataBuilder.MetadataHolder#tryCached(ComponentIdentifier)
         */
        void reevaluate();
    
        @Override
        LocalComponentGraphSelectionCandidates getCandidatesForGraphVariantSelection();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    	// We avoid the nested build ID problem in the previous special case
    	// by recording the test results in the cache under the action ID half.
    	if len(a.triggers) == 1 && a.triggers[0].TryCache != nil && a.triggers[0].TryCache(b, a.triggers[0]) {
    		// Best effort attempt to display output from the compile and link steps.
    		// If it doesn't work, it doesn't work: reusing the test result is more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    			Mode:       "test run",
    			Actor:      rta,
    			Deps:       []*work.Action{buildAction},
    			Package:    p,
    			IgnoreFail: true, // run (prepare output) even if build failed
    			TryCache:   rta.c.tryCache,
    		}
    		if writeCoverMetaAct != nil {
    			// If writeCoverMetaAct != nil, this indicates that our
    			// "go test -coverpkg" run actions will need to read the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/action.go

    	TestOutput *bytes.Buffer // test output buffer
    	Args       []string      // additional args for runProgram
    
    	triggers []*Action // inverse of deps
    
    	buggyInstall bool // is this a buggy install (see -linkshared)?
    
    	TryCache func(*Builder, *Action) bool // callback for cache bypass
    
    	// Generated files, directories.
    	Objdir   string         // directory for intermediate objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top