Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 208 for getGood (0.22 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolRegistry.java

    import org.gradle.nativeplatform.toolchain.internal.ToolType;
    
    import javax.annotation.Nullable;
    
    @NonNullApi
    public interface ToolRegistry {
        @Nullable
        GccCommandLineToolConfigurationInternal getTool(ToolType toolType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 941 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/AccumulateBuildInputsListener.java

        }
    
        private static class FilteredTree {
            private final String root;
            private final PatternSet patterns;
    
            private FilteredTree(String root, PatternSet patterns) {
                this.root = root;
                this.patterns = patterns;
            }
    
            public String getRoot() {
                return root;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/FileCollectionConventionMappingIntegrationTest.groovy

            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @Internal abstract ConfigurableFileCollection getFoo()
                    @Internal abstract ConfigurableFileCollection getBar()
                    @Inject abstract ProjectLayout getLayout()
    
                    @TaskAction
                    void useIt() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 20:10:55 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/waiting_pods_map.go

    			msg := fmt.Sprintf("rejected due to timeout after waiting %v at plugin %v",
    				waitTime, plugin)
    			wp.Reject(plugin, msg)
    		})
    	}
    
    	return wp
    }
    
    // GetPod returns a reference to the waiting pod.
    func (w *waitingPod) GetPod() *v1.Pod {
    	return w.pod
    }
    
    // GetPendingPlugins returns a list of pending permit plugin's name.
    func (w *waitingPod) GetPendingPlugins() []string {
    	w.mu.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/object_unused.kt

    fun test(b: Boolean) {
        <expr>object {
            fun getBool(): Boolean = b
        }</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 91 bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractFileAccessor.java

        }
    
        private Path getPath(String name, Level level) {
            return directoryProvider.getRoot(level).resolve(name);
        }
    
        @Override
        public DataTargetFactory createTargetFactory(final String root, Level level) throws IOException {
            final Path rootDir = Files.createTempDirectory(directoryProvider.getRoot(level), root);
            return new DataTargetFactory() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/dependents/DependentBinariesResolutionResult.java

    package org.gradle.platform.base.internal.dependents;
    
    /**
     * Holds the result of a dependent binaries resolution.
     */
    public interface DependentBinariesResolutionResult {
    
        DependentBinariesResolvedResult getRoot();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 840 bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                outstr.writeLong(index.rootPos.getPos());
                outstr.writeShort(maxChildIndexEntries);
            }
    
            public IndexBlock getRoot() throws Exception {
                return index.getRoot();
            }
        }
    
        private class IndexBlock extends BlockPayload {
            private final List<IndexEntry> entries = new ArrayList<IndexEntry>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. operator/pkg/util/progress/progress.go

    	sort.Strings(wait)
    	msg := fmt.Sprintf(`Processing resources for %s.`, strings.Join(comps, ", "))
    	if len(wait) > 0 {
    		msg += fmt.Sprintf(` Waiting for %s`, strings.Join(wait, ", "))
    	}
    	prefix := inProgress
    	if !p.bar.GetBool(pb.Terminal) {
    		// If we aren't a terminal, no need to spam extra lines
    		prefix = `{{ yellow "-" }} `
    	}
    	// reduce by 2 to allow for the "- " that will be added below
    	maxWidth -= 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/DirectoryProvider.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Level;
    
    import java.nio.file.Path;
    
    public interface DirectoryProvider {
        Path getRoot(Level level);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 802 bytes
    - Viewed (0)
Back to top