Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 198 for shadow_ (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    === Shadow dependencies ===
    
    Starting from version 1.0.0 of Plugin Publish Plugin, shadowing your plugin's dependencies (ie, publishing it as a fat jar) has been made automatic.
    To enable it, all that's needed is to apply the https://github.com/johnrengelman/shadow[`com.github.johnrengelman.shadow`] plugin in your build.
    
    [[sec:publishing_your_plugin]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.shaded-jar.gradle.kts

                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
                attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.SHADOWED))
                attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 6)
            }
            extendsFrom(shadedImplementation)
            outgoing.artifact(shadedJarTask) {
                name = moduleIdentity.baseName.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. src/go/types/eval_test.go

    			_ = func() {
    				/* interface{io.Writer}.Write => , func(_ interface{io.Writer}, p []byte) (n int, err error) */
    				type io interface {} // must not shadow io in line above
    			}
    			type R interface {} // must not shadow R in first line of this function body
    		}
    		`,
    	}
    
    	fset := token.NewFileSet()
    	var files []*ast.File
    	for i, src := range sources {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/https/https02.drawio

        <diagram id="jyERGzDynktFHFRGN0ph" name="Page-1">
            <mxGraphModel dx="2481" dy="1867" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="1920" pageHeight="1200" math="0" shadow="0">
                <root>
                    <mxCell id="0"/>
                    <mxCell id="1" parent="0"/>
                    <mxCell id="2" value="" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/internal/capabilities/ShadowedCapability.java

     * However, we still want to make sure we can select the platform component
     * whenever no explicit capability is required. In this case, and only in
     * this case, we use the "shadowed" capability to check.
     * <p>
     * It remains deeply immutable.
     */
    public interface ShadowedCapability extends ImmutableCapability {
        String getAppendix();
        ImmutableCapability getShadowedCapability();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:22:00 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. test/fixedbugs/issue5373.go

    	s := make([]byte, n)
    	for i = range s {
    		s[i] = 0
    	}
    	if want := n - 1; i != want {
    		fmt.Printf("index after range with side-effect = %d want %d\n", i, want)
    		os.Exit(1)
    	}
    
    	i = n + 1
    	// i is shadowed here, so its value should be unchanged.
    	for i := range s {
    		s[i] = 0
    	}
    	if want := n + 1; i != want {
    		fmt.Printf("index after range without side-effect = %d want %d\n", i, want)
    		os.Exit(1)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionTestSupport.kt

                DirectiveApplicability.Any,
                ::FqName,
            )
            val RESOLVE_EXTENSION_SHADOWED by valueDirective(
                "File name regex(es) to shadow in resolve extension",
                DirectiveApplicability.Module,
                ::Regex,
            )
    
            val RESOLVE_EXTENSION_FILE by directive(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/base.css

            margin-bottom: 1rem;
        }
    }
    
    /* Top navigation desktop styles */
    @media (min-width: 1024px) {
        .site-header {
            -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .15);
            -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .15);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .15);
            z-index: 1;
        }
    
        /*
          Pushes the section headings to just below the top nav bar when a user
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. src/net/dial.go

    			}
    		}()
    		ctx = subCtx
    	}
    
    	// Shadow the nettrace (if any) during resolve so Connect events don't fire for DNS lookups.
    	resolveCtx := ctx
    	if trace, _ := ctx.Value(nettrace.TraceKey{}).(*nettrace.Trace); trace != nil {
    		shadow := *trace
    		shadow.ConnectStart = nil
    		shadow.ConnectDone = nil
    		resolveCtx = context.WithValue(resolveCtx, nettrace.TraceKey{}, &shadow)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/testdata/smiley.test

        --- PASS: Test☺☹/3 (0.07s)
            vet_test.go:114: φιλεσ: ["testdata/composite.go" "testdata/nilfunc.go"]
        --- PASS: Test☺☹/6 (0.07s)
            vet_test.go:114: φιλεσ: ["testdata/copylock_range.go" "testdata/shadow.go"]
        --- PASS: Test☺☹/2 (0.07s)
            vet_test.go:114: φιλεσ: ["testdata/bool.go" "testdata/method.go" "testdata/unused.go"]
        --- PASS: Test☺☹/0 (0.13s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.3K bytes
    - Viewed (0)
Back to top