Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for scriptEnv (0.27 sec)

  1. configure.py

      Returns:
        boolean value of the variable.
    
      Raises:
        UserInputError: if an environment variable is set, but it cannot be
          interpreted as a boolean indicator, assume that the user has made a
          scripting error, and will continue to provide invalid input.
          Raise the error to avoid infinitely looping.
      """
      if not question:
        question = 'Do you wish to build TensorFlow with {} support?'.format(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    include("app")
    include("business-logic")
    include("data-model")
    ----
    
    You can also include entire builds using link:{javadocPath}/org/gradle/api/initialization/IncludedBuild.html[`includeBuild`].
    
    == Settings File Scripting
    
    There are many more properties and methods on the `Settings` object that you can use to configure your build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/html/template/js.go

    //
    // It is used to determine whether a script tag with a type attribute is a javascript container.
    func isJSType(mimeType string) bool {
    	// per
    	//   https://www.w3.org/TR/html5/scripting-1.html#attr-script-type
    	//   https://tools.ietf.org/html/rfc7231#section-3.1.1
    	//   https://tools.ietf.org/html/rfc4329#section-3
    	//   https://www.ietf.org/rfc/rfc4627.txt
    	// discard parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. maven-core/plugin-manager.txt

    - we also seem to have information like the plugin lifecycle model that's buried inside the maven execution model
    - we also seem to have artifact information tangled inside the plugin model
    - we have to deal with scripting implementations (groovy, beanshell, ruby)
    - we need to deal with a shared context for plugins, like the guarded mojos
    - we need to deal with plugins as core application logic which can also interact with plugins
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    Using Ant tasks in a Gradle build script is often easier and more powerful than using Ant's XML format.
    Gradle can also be used as a powerful Ant task scripting tool.
    
    Ant can be divided into two layers:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    [source]
    ----
    tasks.named("javadoc").configure {
        exclude 'app/Internal*.java'
        exclude 'app/internal/*'
        exclude 'app/internal/*'
    }
    ----
    
    == Build Scripting
    
    A build script is made up of zero or more statements and script blocks:
    
    [source]
    ----
    println(project.layout.projectDirectory);
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

    import org.gradle.kotlin.dsl.support.scriptDefinitionFromTemplate
    import org.gradle.plugin.management.internal.MultiPluginRequests
    import org.gradle.plugin.use.internal.PluginRequestCollector
    import org.jetbrains.kotlin.scripting.definitions.ScriptDefinition
    import org.jetbrains.org.objectweb.asm.ClassVisitor
    import org.jetbrains.org.objectweb.asm.ClassWriter
    import org.jetbrains.org.objectweb.asm.MethodVisitor
    import org.jetbrains.org.objectweb.asm.Type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-65983`](https://youtrack.jetbrains.com/issue/KT-65983) K2 gradle scripting: "'val' cannot be reassigned" errors
    - [`KT-60452`](https://youtrack.jetbrains.com/issue/KT-60452) K2 Scripting: implement overriding of the script params
    - [`KT-65975`](https://youtrack.jetbrains.com/issue/KT-65975) K2: Implicit receivers resolution order in K2 scripting
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/engine.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package script implements a small, customizable, platform-agnostic scripting
    // language.
    //
    // Scripts are run by an [Engine] configured with a set of available commands
    // and conditions that guard those commands. Each script has an associated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    	// of binaries is much lower for binaries.
    	// Not caching the link step also makes sure that repeated "go run" at least
    	// always rerun the linker, so that they don't get too fast.
    	// (We don't want people thinking go is a scripting language.)
    	// Note also that if we start caching binaries, then we will
    	// copy the binaries out of the cache to run them, and then
    	// that will mean the go process is itself writing a binary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top