Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 475 for Sarker (0.15 sec)

  1. platforms/core-runtime/installation-beacon/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Marker class file used to locate the Gradle distribution base directory"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:54:46 UTC 2023
    - 192 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildScriptChangesContinuousBuildIntegrationTest.groovy

            given:
            def markerFile = file("input/marker")
            markerFile.text = "original"
    
            file(buildFileName) << """
                tasks.register("myTask") {
                  ${variableDefinition} inputFile = file("input/marker")
                  inputs.files(inputFile)
                  outputs.files("build/marker")
                  doLast {
                    println("value: " + inputFile.${readTextMethod})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/list.go

    	}
    }
    
    func (b *Item) printMarkdown(buf *bytes.Buffer, s mdState) {
    	var marker string
    	if s.bullet == '.' || s.bullet == ')' {
    		marker = fmt.Sprintf("%d%c ", s.num, s.bullet)
    	} else {
    		marker = fmt.Sprintf("%c ", s.bullet)
    	}
    	marker = strings.Repeat(" ", b.width-len(marker)) + marker
    	s.prefix1 = s.prefix + marker
    	s.prefix += strings.Repeat(" ", len(marker))
    	printMarkdownBlocks(b.Blocks, buf, s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.java

            // We simulate fan-in behaviour:
            // We expect that a transform before this one outputs three artifacts: 1. analysis metadata, 2. the original file and 3. instrumentation marker file.
            // So if the input is analysis metadata we use it and create instrumented artifact, otherwise it's original artifact and we output that.
            File input = getInput().get().getAsFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/structs/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package structs defines marker types that can be used as struct fields
    // to modify the properties of a struct.
    //
    // By convention, a marker type should be used as the type of a field
    // named "_", placed at the beginning of a struct type definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 431 bytes
    - Viewed (0)
  6. src/packaging/deb/packaging.properties

    # Properties used to build to the DEB package
    #
    
    # Environment file
    packaging.env.file=/etc/default/fess
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=deb
    
    # Custom header for package scripts
    packaging.scripts.header=#!/bin/sh${line.separator}set -e
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 401 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/MetaDataParser.java

         */
        String GRADLE_METADATA_MARKER = "do-not-remove: published-with-gradle-metadata";
        /**
         * If the following marker is found in a `pom` file, Gradle (version 6.0 or higher)
         * will look for a `module` file to use it instead of the `pom` file.
         * This marker was introduced to allow library authors to publish Gradle Module Metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. cmd/object-api-interface_gen.go

    		field, bts, err = msgp.ReadMapKeyZC(bts)
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "Marker":
    			z.Marker, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Marker")
    				return
    			}
    		case "LatestOnly":
    			z.LatestOnly, bts, err = msgp.ReadBoolBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "LatestOnly")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/JvmTestToolchainParameters.java

     */
    
    package org.gradle.api.testing.toolchains.internal;
    
    /**
     * Marker interface for parameters of {@link JvmTestToolchain}s.  Implementations of {@link JvmTestToolchain} be parameterized with
     * an implementation of this type or {@link JvmTestToolchainParameters.None}.
     *
     * @since 8.5
     */
    public interface JvmTestToolchainParameters {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 10:55:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. build-logic/packaging/src/test/kotlin/gradlebuild/packaging/GradleDistributionInstallTest.kt

                gradleScriptPath(files("gradlew.bat"))
            }
            """)
            File(projectRoot, "version.txt").writeText("8.2")
            File(projectRoot, "gradlew.bat").writeText(marker)
        }
    
        private
        val marker = "I'm a marker text"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top