Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for loggingLevel (0.24 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

        public void setListFiles(boolean listFiles) {
            this.listFiles = listFiles;
        }
    
        public String getLoggingLevel() {
            return loggingLevel;
        }
    
        public void setLoggingLevel(String loggingLevel) {
            this.loggingLevel = loggingLevel;
        }
    
        public List<String> getLoggingPhases() {
            return loggingPhases;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

         * Specifies the amount of logging.
         * Legal values:  none, verbose, debug
         */
        @Console
        public String getLoggingLevel() {
            return loggingLevel;
        }
    
        public void setLoggingLevel(String loggingLevel) {
            this.loggingLevel = loggingLevel;
        }
    
        /**
         * Phases of the compiler to log.
         * Legal values: namer, typer, pickler, uncurry, tailcalls, transmatch, explicitouter, erasure,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    // will be when machine code is emitted.
    func BuildFuncDebug(ctxt *obj.Link, f *Func, loggingLevel int, stackOffset func(LocalSlot) int32, rval *FuncDebug) {
    	if f.RegAlloc == nil {
    		f.Fatalf("BuildFuncDebug on func %v that has not been fully processed", f)
    	}
    	state := &f.Cache.debugState
    	state.loggingLevel = loggingLevel % 1000
    
    	// A specific number demands exactly that many iterations. Under
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            this.transferListener = transferListener;
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setLoggingLevel(int loggingLevel) {
            this.loggingLevel = loggingLevel;
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setOffline(boolean offline) {
            this.offline = offline;
    
            return this;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.scala.ScalaCompileOptions.xml

                </tr>
                <tr>
                    <td>listFiles</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>loggingLevel</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>loggingPhases</td>
                    <td><literal>null</literal></td>
                </tr>
            </table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.language.scala.tasks.BaseScalaCompileOptions.xml

                </tr>
                <tr>
                    <td>listFiles</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>loggingLevel</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>loggingPhases</td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        MavenExecutionRequest setTransferListener(TransferListener transferListener);
    
        TransferListener getTransferListener();
    
        // Logging
        MavenExecutionRequest setLoggingLevel(int loggingLevel);
    
        int getLoggingLevel();
    
        // Update snapshots
        MavenExecutionRequest setUpdateSnapshots(boolean updateSnapshots);
    
        boolean isUpdateSnapshots();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top