Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for scriptId (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:hard_coded_file_paths]]
    == Hardcoded paths and laziness
    
    It is best practice to *avoid* hardcoded paths in build scripts.
    
    In addition to avoiding hardcoded paths, Gradle encourages laziness in its build scripts.
    This means that tasks and operations should be deferred until they are actually needed rather than executed eagerly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.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.gradle.groovy.scripts.internal;
    
    import com.google.common.collect.ImmutableMap;
    import org.codehaus.groovy.GroovyBugError;
    import org.codehaus.groovy.ast.ASTNode;
    import org.codehaus.groovy.ast.AnnotatedNode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

     * '*' wildcard matching
    
    You can enable filtering either in the build script or via the `--tests` command-line option. Here's an example of some filters that are applied every time the build runs:
    
    .Filtering tests in the build script
    ====
    include::sample[dir="snippets/testing/filtering/kotlin",files="build.gradle.kts[tags=test-filtering]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	// HTML.
    	{"html", `{{html "<script>alert(\"XSS\");</script>"}}`,
    		"&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
    	{"html pipeline", `{{printf "<script>alert(\"XSS\");</script>" | html}}`,
    		"&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
    	{"html", `{{html .PS}}`, "a string", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

    # limitations under the License.
    
    KUBE_VERBOSE=${KUBE_VERBOSE:-1}
    if (( KUBE_VERBOSE > 4 )); then
      set -x
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # This script builds and runs a local kubernetes cluster. You may need to run
    # this as root to allow kubelet to open docker's socket, and to write the test
    # CA in /var/run/kubernetes.
    # Usage: `hack/local-up-cluster.sh`.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            def consumerBuildFile = file('consumer/build.gradle')
            def buildscriptDestination = inExternalScript
                ? file('consumer/my-script.gradle')
                : consumerBuildFile
            buildscriptDestination << """
                buildscript {
                    // Build script classpath is resolved via ${INSTRUMENTED_ATTRIBUTE.name} attribute,
                    // so we have to set that attribute too to make transform run
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.configuration.internal.ListenerBuildOperationDecorator;
    import org.gradle.configuration.project.ProjectConfigurationActionContainer;
    import org.gradle.configuration.project.ProjectEvaluator;
    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.internal.Actions;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Factories;
    import org.gradle.internal.Factory;
    import org.gradle.internal.deprecation.DeprecationLogger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.index.reindex.UpdateByQueryRequest;
    import org.opensearch.script.Script;
    import org.opensearch.script.ScriptType;
    import org.opensearch.search.SearchHit;
    import org.opensearch.search.SearchHits;
    import org.opensearch.search.aggregations.AggregationBuilders;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. .bazelrc

    build:release_linux_base --copt=-Wno-error=unused-command-line-argument
    # Set lld as the linker.
    build:release_linux_base --linkopt="-fuse-ld=lld"
    build:release_linux_base --linkopt="-lm"
    
    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    # Container environment settings below this point.
    # Use Python 3.X as installed in container image
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

    # We HIGHLY recommend not changing the file structure, because consumers of
    # Kubernetes releases depend on the release structure remaining stable.
    
    # TODO: update scripts for these style guidelines:
    #  - Remove {} around variable references unless actually needed for clarity.
    #  - Always use single-quoted strings unless actually interpolating variables
    #    or using escape characters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top