Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SetVerbose (0.17 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

                setThreadPoolFactoryClass(testNg, spec.getThreadPoolFactoryClass());
            }
    
            testNg.setUseDefaultListeners(spec.getUseDefaultListeners());
            testNg.setVerbose(0);
            testNg.setGroups(CollectionUtils.join(",", spec.getIncludeGroups()));
            testNg.setExcludedGroups(CollectionUtils.join(",", spec.getExcludeGroups()));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         */
        @Console
        public boolean isVerbose() {
            return verbose;
        }
    
        /**
         * Sets whether to produce verbose output. Defaults to {@code false}.
         */
        public void setVerbose(boolean verbose) {
            this.verbose = verbose;
        }
    
        /**
         * Tells whether to log the files to be compiled. Defaults to {@code false}.
         */
        @Console
        public boolean isListFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/bugreport/bugreport.go

    	getFromCluster(content.GetClusterInfo, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetNodeInfo, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetSecrets, params.SetVerbose(config.FullSecrets), clusterDir, &mandatoryWg)
    	getFromCluster(content.GetPodInfo, params.SetIstioNamespace(config.IstioNamespace), clusterDir, &mandatoryWg)
    
    	common.LogAndPrintf("\nFetching CNI logs from cluster.\n\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

        Optional<DependencyCoordinate> getRoot();
    
        @Nonnull
        Collection<DependencyCoordinate> getDependencies();
    
        @Nonnull
        Collection<DependencyCoordinate> getManagedDependencies();
    
        boolean getVerbose();
    
        @Nullable
        PathScope getPathScope();
    
        /**
         * Returns a filter for the types of path (class-path, module-path, …) accepted by the tool.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top