Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 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. 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)
  3. 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