Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for setZero (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

         * to the complete type ({@link ComponentMetadata}) which provides more than what we want to expose in those
         * rules. In particular, the builder exposes setters, that we don't want on the component metadata type.
         */
        private static class SimpleComponentMetadataBuilder implements ComponentMetadataBuilder {
            private final ModuleVersionIdentifier id;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

            get() = withValidityAssertion {
                firSymbol.getterSymbol?.let { builder.callableBuilder.buildPropertyAccessorSymbol(it) } as? KaPropertyGetterSymbol
            }
    
        override val setter: KaPropertySetterSymbol?
            get() = withValidityAssertion {
                firSymbol.setterSymbol?.let { builder.callableBuilder.buildPropertyAccessorSymbol(it) } as? KaPropertySetterSymbol
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. cmd/metacache-set.go

    //msgp:ignore metaCacheRPC
    type metaCacheRPC struct {
    	o      listPathOptions
    	mu     sync.Mutex
    	meta   *metacache
    	rpc    *peerRESTClient
    	cancel context.CancelFunc
    }
    
    func (m *metaCacheRPC) setErr(err string) {
    	m.mu.Lock()
    	defer m.mu.Unlock()
    	meta := *m.meta
    	if meta.status != scanStateError {
    		meta.error = err
    		meta.status = scanStateError
    	} else {
    		// An error is already set.
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/alias.go

    	res.tparams = orig.tparams
    	res.targs = newTypeList(targs)
    	return res
    }
    
    func (a *Alias) cleanup() {
    	// Ensure a.actual is set before types are published,
    	// so Unalias is a pure "getter", not a "setter".
    	actual := Unalias(a)
    
    	if actual == Typ[Invalid] {
    		// We don't set a.actual to Typ[Invalid] during type checking,
    		// as it may indicate that the RHS is not fully set up.
    		a.actual = actual
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

    import java.util.Map;
    
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.GETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.SETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacesEagerProperty.BinaryCompatibility.ACCESSORS_KEPT;
    
    /**
     * Main options for Java compilation.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

            when (val property = propertyResolver.resolvePropertyWrite(receiverKClass, dataProperty.name)) {
                is RuntimePropertyResolver.WriteResolution.ResolvedWrite -> property.setter.setValue(receiverInstance, value)
                RuntimePropertyResolver.WriteResolution.UnresolvedWrite -> error("cannot set property ${dataProperty.name} in the receiver class $receiverKClass")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/go/types/alias.go

    	res.tparams = orig.tparams
    	res.targs = newTypeList(targs)
    	return res
    }
    
    func (a *Alias) cleanup() {
    	// Ensure a.actual is set before types are published,
    	// so Unalias is a pure "getter", not a "setter".
    	actual := Unalias(a)
    
    	if actual == Typ[Invalid] {
    		// We don't set a.actual to Typ[Invalid] during type checking,
    		// as it may indicate that the RHS is not fully set up.
    		a.actual = actual
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    include::{snippetsPath}/providers/implicitTaskInputFileDependency/tests/implicitTaskInputFileDependencyKotlin.out[]
    ----
    
    In the example above, the task outputs and inputs are connected before any location is defined.
    The setters can be called at any time before the task is executed, and the change will automatically affect all related input and output properties.
    
    Another important thing to note in this example is the absence of any explicit task dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            val previousErr = System.err
            try {
                System.setOut(outCapture)
                System.setErr(errCapture)
                block()
            } finally {
                System.out.flush()
                System.setOut(previousOut)
                outCapture.stop()
                System.err.flush()
                System.setErr(previousErr)
                errCapture.stop()
            }
        } catch (error: Throwable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

        }
    
        private void redirectOutputsAndInput(PrintStream printStream) {
            this.originalOut = System.out;
            this.originalErr = System.err;
    
            System.setOut(printStream);
            System.setErr(printStream);
            System.setIn(new ByteArrayInputStream(new byte[0]));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top