Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 487 for Implicits (0.11 sec)

  1. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Component(providerAccessors, "Accessors", "Collects Project Schema, generates Accessors source and bytecode")
                Component(providerImports, "Implicit Imports", "Includes Gradle's default imports")
    
    
                Rel_Neighbor(providerFactory, providerExecution, "Delegates to")
                Rel(providerExecution, providerScriptTemplates, "Uses", "script API for compilation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            }
        }
    
        /**
         * Returns the set of implicit selector names expected for any project for the target Gradle version.
         *
         * <p>Note that in some versions the handling of implicit selectors was broken, so this method may return a different value
         * to {@link #getImplicitTasks()}.
         */
        Set<String> getImplicitSelectors() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractHeaderExportingSourceSet.java

        public AbstractHeaderExportingSourceSet() {
            this.exportedHeaders = objectFactory.sourceDirectorySet("exported", "exported headers");
            this.implicitHeaders = objectFactory.sourceDirectorySet("implicit", "implicit headers");
        }
    
        @Override
        public SourceDirectorySet getExportedHeaders() {
            return exportedHeaders;
        }
    
        @Override
        public SourceDirectorySet getImplicitHeaders() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_dash_x.txt

    #
    # (The fix in golang.org/issue/29004 didn't completely fix the underlying issue:
    # cmd/go/internal/load adds a bunch of implicit dependencies
    # based on various heuristics, and, due to a bug described in
    # https://golang.org/issue/31544#issuecomment-490607180,
    # those implicit dependencies are not added early enough during
    # loading to properly affect the import graph.)
    go build runtime/cgo
    
    go build -x -o main main.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. src/runtime/memclr_arm.s

    	B	_f32loop
    
    _4tail:
    	SUB	$3, TOE, TMP	/* do remaining words if possible */
    _4loop:
    	CMP	TMP, TO
    	BHS	_1tail
    
    	MOVW.P	R0, 4(TO)		/* implicit write back */
    	B	_4loop
    
    _1tail:
    	CMP	TO, TOE
    	BEQ	_return
    
    	MOVBU.P	R0, 1(TO)		/* implicit write back */
    	B	_1tail
    
    _return:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/MethodModelRuleApplicationContext.java

         * - Resolved subject and input paths relative to the target element.
         * - Resolves subject type references relative to the target element.
         * - Adds implicit inputs.
         *
         * The returned action invokes the provided action with a {@link ModelRuleInvoker} contextualized with implicit inputs.
         */
        ModelAction contextualize(MethodRuleAction action);
    
        ModelPath getScope();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/api/HasImplicitReceiver.java

     * where the single parameter is passed as the implicit receiver of the
     * invocation ({@code this} in Kotlin, {@code delegate} in Groovy) as if
     * the lambda expression was an extension method of the parameter type.
     *
     * <pre>
     *     // copySpec(Action&lt;CopySpec&gt;)
     *     copySpec {
     *         from("./sources") // the given CopySpec is the implicit receiver
     *     }
     * </pre>
     *
     * @since 3.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/encoding/asn1/common.go

    	isCompound         bool
    }
    
    // ASN.1 has IMPLICIT and EXPLICIT tags, which can be translated as "instead
    // of" and "in addition to". When not specified, every primitive type has a
    // default tag in the UNIVERSAL class.
    //
    // For example: a BIT STRING is tagged [UNIVERSAL 3] by default (although ASN.1
    // doesn't actually have a UNIVERSAL keyword). However, by saying [IMPLICIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/interface.go

    		check.needsCleanup(typ)
    	}
    	return typ
    }
    
    // MarkImplicit marks the interface t as implicit, meaning this interface
    // corresponds to a constraint literal such as ~T or A|B without explicit
    // interface embedding. MarkImplicit should be called before any concurrent use
    // of implicit interfaces.
    func (t *Interface) MarkImplicit() {
    	t.implicit = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/go/types/selection.go

    // sequence of selection operations x.a.b.c.f. The SelectionKind
    // describes the kind of the final (explicit) operation; all the
    // previous (implicit) operations are always field selections.
    // Each element of Indices specifies an implicit field (a, b, c)
    // by its index in the struct type of the field selection operand.
    //
    // For a FieldVal operation, the final selection refers to the field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top