Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for engines (0.35 sec)

  1. src/cmd/go/internal/script/engine.go

    // before returning. To stop those, use [State.CloseAndWait] or the
    // [Wait] command.
    func (e *Engine) Execute(s *State, file string, script *bufio.Reader, log io.Writer) (err error) {
    	defer func(prev *Engine) { s.engine = prev }(s.engine)
    	s.engine = e
    
    	var sectionStart time.Time
    	// endSection flushes the logs for the current section from s.log to log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcweb/vcweb.go

    // regenerates the repository using a script interpreted by a [script.Engine].
    // The script produces the server's contents for a corresponding root URL and
    // all subdirectories of that URL, which are then cached: subsequent requests
    // for any URL generated by the script will serve the script's previous output
    // until the script is modified.
    //
    // The script engine includes all of the engine's default commands and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/go/script_test.go

    		t.Cleanup(cancel)
    	}
    
    	env, err := scriptEnv(srv, certFile)
    	if err != nil {
    		t.Fatal(err)
    	}
    	engine := &script.Engine{
    		Conds: scriptConditions(),
    		Cmds:  scriptCommands(quitSignal(), gracePeriod),
    		Quiet: !testing.Verbose(),
    	}
    
    	t.Run("README", func(t *testing.T) {
    		checkScriptReadme(t, engine, env)
    	})
    
    	files, err := filepath.Glob("testdata/script/*.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/cmds.go

    			out := new(strings.Builder)
    
    			if len(conds) > 0 || (len(args) == 0 && len(s.engine.Conds) > 0) {
    				if conds == nil {
    					out.WriteString("conditions:\n\n")
    				}
    				s.engine.ListConds(out, s, conds...)
    			}
    
    			if len(cmds) > 0 || len(args) == 0 {
    				if len(args) == 0 {
    					out.WriteString("\ncommands:\n\n")
    				}
    				s.engine.ListCmds(out, verbose, cmds...)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val junit = "junit:junit"
        val junit5Vintage = "org.junit.vintage:junit-vintage-engine"
        val junit5JupiterApi = "org.junit.jupiter:junit-jupiter-api"
        val junitPlatform = "org.junit.platform:junit-platform-launcher"
        val junitPlatformEngine = "org.junit.platform:junit-platform-engine"
        val jzlib = "com.jcraft:jzlib"
        val kotlinCompilerEmbeddable = futureKotlin("compiler-embeddable")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            }
            FlakyTestStrategy.ONLY -> {
                // Note there is an issue: https://github.com/spockframework/spock/issues/1288
                // JUnit Platform `includeTags` works before Spock engine, thus excludes all spock tests.
                // As a workaround, we tag all non-spock integration tests and use `includeTags(none() | Flaky)` here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

                    repositories {
                        mavenCentral()
                    }
    
                    dependencies {
                        "testImplementation"("org.junit.jupiter:junit-jupiter-engine:5.8.1")
                    }
    
                    tasks.named<Test>("test").configure {
                        this.ignoreFailures = ignoreFailures
                        if (hasLeftover) {
                            doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            final HashMap<String, Object> stats = new HashMap<>();
            stats.put("jvm", getJvmObj());
            stats.put("os", getOsObj());
            stats.put("process", getProcessObj());
            stats.put("engine", getEngineObj());
            stats.put("fs", getFsObj());
            return asJson(new ApiStatsResponse().stats(stats).status(ApiResult.Status.OK).result());
        }
    
        private FsObj[] getFsObj() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.api.engine;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Locale;
    import java.util.UUID;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/README

    On Windows, the variables $USERPROFILE and $TMP are set instead of
    $HOME and $TMPDIR.
    
    The lines at the top of the script are a sequence of commands to be executed by
    a small script engine configured in ../../script_test.go (not the system shell).
    
    The scripts' supporting files are unpacked relative to $GOPATH/src
    (aka $WORK/gopath/src) and then the script begins execution in that directory as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top