Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 411 for compiling (0.17 sec)

  1. src/cmd/compile/internal/ssa/compile.go

    //   - f has a non-nil regAlloc field
    func Compile(f *Func) {
    	// TODO: debugging - set flags to control verbosity of compiler,
    	// which phases to dump IR before/after, etc.
    	if f.Log() {
    		f.Logf("compiling %s\n", f.Name)
    	}
    
    	var rnd *rand.Rand
    	if checkEnabled {
    		seed := int64(crc32.ChecksumIEEE(([]byte)(f.Name))) ^ int64(checkRandSeed)
    		rnd = rand.New(rand.NewSource(seed))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            impl.recompiledClasses("Base", "Dependant")
    
            impl.snapshot()
    
            // Change the contents of Dependant to force recompile. Compile will only
            // pass if compiling against impl's Base
            file("impl/src/main/${language.name}/Dependant.${language.name}") << "// Recompile me please"
            run("${language.compileTaskName}")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. tools/docker-builder/types.go

    	Targets []string `json:"targets"`
    	// Base indicates if this is a base image or not
    	Base bool `json:"base"`
    	// EmulationRequired indicates if emulation is required when cross-compiling. It typically is not,
    	// as most building in Istio is done outside of docker.
    	// When this is set, cross-compile is disabled for components unless emulation is epxlicitly specified
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

            block()
        } finally {
            currentThread.contextClassLoader = previous
        }
    }
    
    
    private
    fun logCompilationOf(templateId: String, source: ScriptSource) {
        interpreterLogger.debug("Compiling $templateId from ${source.displayName}")
    }
    
    
    private
    fun logClassLoadingOf(templateId: String, source: ScriptSource) {
        interpreterLogger.debug("Loading $templateId from ${source.displayName}")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

                        }
                    }
                }
            }
    
            private boolean isModule(boolean testOnly, File artifact) {
                // Test code is not treated as modules, as Eclipse does not support compiling two modules in one project anyway.
                // See also: https://bugs.eclipse.org/bugs/show_bug.cgi?id=520667
                //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/func.go

    	funcIsHiddenClosure
    	funcIsDeadcodeClosure        // true if closure is deadcode
    	funcHasDefer                 // contains a defer statement
    	funcNilCheckDisabled         // disable nil checks when compiling this function
    	funcInlinabilityChecked      // inliner has already determined whether the function is inlinable
    	funcNeverReturns             // function never returns (in most cases calls panic(), os.Exit(), or equivalent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    			}
    			continue
    		}
    		if compilationResult.Program == nil {
    			evaluation.Error = &cel.Error{
    				Type:   cel.ErrorTypeInternal,
    				Detail: fmt.Sprintf("unexpected internal error compiling expression"),
    			}
    			continue
    		}
    		t1 := time.Now()
    		evalResult, evalDetails, err := compilationResult.Program.ContextEval(ctx, va)
    		// budget may be spent due to lazy evaluation of composited variables
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/action.go

    		}
    		if cfg.BuildX {
    			sh.ShowCmd("", "%s # internal", joinUnambiguously(str.StringList("cp", a.Target, c.OutputFile(outputID))))
    		}
    	}
    
    	return nil
    }
    
    // CompileAction returns the action for compiling and possibly installing
    // (according to mode) the given package. The resulting action is only
    // for building packages (archives), never for linking executables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. mvnw

              javaClass=$(cygpath --path --windows "$javaClass")
            fi
            if [ -e "$javaSource" ]; then
                if [ ! -e "$javaClass" ]; then
                    log " - Compiling MavenWrapperDownloader.java ..."
                    ("$JAVA_HOME/bin/javac" "$javaSource")
                fi
                if [ -e "$javaClass" ]; then
                    log " - Running MavenWrapperDownloader.java ..."
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. src/cmd/doc/doc_test.go

    			if err != nil {
    				t.Fatalf("%s.%d: compiling %#q: %s", test.name, j, yes, err)
    			}
    			if !re.Match(output) {
    				t.Errorf("%s.%d: no match for %s %#q", test.name, j, test.args, yes)
    				failed = true
    			}
    		}
    		for j, no := range test.no {
    			re, err := regexp.Compile(no)
    			if err != nil {
    				t.Fatalf("%s.%d: compiling %#q: %s", test.name, j, no, err)
    			}
    			if re.Match(output) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top