Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,694 for shade (0.04 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild.shaded-jar.gradle.kts

    import gradlebuild.basics.decapitalize
    import gradlebuild.shade.ArtifactTypes.buildReceiptType
    import gradlebuild.shade.ArtifactTypes.classTreesType
    import gradlebuild.shade.ArtifactTypes.entryPointsType
    import gradlebuild.shade.ArtifactTypes.manifestsType
    import gradlebuild.shade.ArtifactTypes.relocatedClassesAndAnalysisType
    import gradlebuild.shade.ArtifactTypes.relocatedClassesType
    import gradlebuild.shade.extension.ShadedJarExtension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/runtime/mbarrier.go

    // to unlink an object from the heap, this will shade it.
    //
    // 2. shade(ptr) prevents a mutator from hiding an object by moving
    // the sole pointer to it from its stack into a black object in the
    // heap. If it attempts to install the pointer into a black object,
    // this will shade it.
    //
    // 3. Once a goroutine's stack is black, the shade(ptr) becomes
    // unnecessary. shade(ptr) prevents hiding an object by moving it from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. pom.xml

    	</modules>
    	<build>
    		<pluginManagement>
    			<plugins>
    				<plugin>
    					<groupId>org.apache.maven.plugins</groupId>
    					<artifactId>maven-shade-plugin</artifactId>
    					<executions>
    						<execution>
    							<phase>package</phase>
    							<goals>
    								<goal>shade</goal>
    							</goals>
    							<configuration>
    								<artifactSet>
    									<includes>
    										<include>org.dbflute:dbflute-runtime</include>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.pom

              </excludes>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>shade-maven-plugin</artifactId>
            <groupId>org.codehaus.mojo</groupId>
            <version>1.0-alpha-9</version>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>shade</goal>
                </goals>
                <configuration>
                  <artifactSet>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. src/image/draw/example_test.go

    		color.Gray{Y: 160},
    		color.Gray{Y: 70},
    		color.Gray{Y: 35},
    		color.Gray{Y: 0},
    	})
    
    	draw.FloydSteinberg.Draw(pi, im.Bounds(), im, image.Point{})
    	shade := []string{" ", "░", "▒", "▓", "█"}
    	for i, p := range pi.Pix {
    		fmt.Print(shade[p])
    		if (i+1)%width == 0 {
    			fmt.Print("\n")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.pom

              </excludes>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>shade-maven-plugin</artifactId>
            <groupId>org.codehaus.mojo</groupId>
            <version>1.0-alpha-9</version>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>shade</goal>
                </goals>
                <configuration>
                  <artifactSet>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild/shade/tasks/ShadedJar.kt

         *
         * The file will be included in the shaded jar under {@code /org/gradle/build-receipt.properties}.
         */
        @get:PathSensitive(PathSensitivity.NONE)
        @get:InputFiles
        abstract val buildReceiptFile: ConfigurableFileCollection
    
        /**
         * The output Jar file.
         */
        @get:OutputFile
        abstract val jarFile: RegularFileProperty
    
        @TaskAction
        fun shade() {
            val entryPoints = readEntryPoints()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 10:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild/shade/ArtifactTypes.kt

     * 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 gradlebuild.shade
    
    
    object ArtifactTypes {
        const val relocatedClassesAndAnalysisType = "relocatedClassesAndAnalysis"
        const val relocatedClassesType = "relocatedClasses"
        const val entryPointsType = "entryPoints"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 984 bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild/shade/extension/ShadedJarExtension.kt

     * 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 gradlebuild.shade.extension
    
    import org.gradle.api.artifacts.Configuration
    import org.gradle.api.provider.SetProperty
    
    
    abstract class ShadedJarExtension(val shadedConfiguration: Configuration) {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. build-logic/packaging/src/test/kotlin/gradlebuild/shade/tasks/ShadedJarTest.kt

     * 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 gradlebuild.shade.tasks
    
    import org.junit.jupiter.api.Assertions.assertEquals
    import org.junit.jupiter.api.Test
    
    
    internal
    class ShadedJarTest {
        @Test
        fun aggregates_class_trees() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top