Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for Returns (0.14 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/HierarchicalEclipseProject.java

        /**
         * Returns the project dependencies for this project.
         *
         * @return The project dependencies. Returns an empty set if the project has no project dependencies.
         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseProjectDependency> getProjectDependencies();
    
        /**
         * Returns the source directories for this project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvedDependency.java

        /**
         * Returns the configuration under which this instance was resolved.
         */
        String getConfiguration();
    
        /**
         * Returns the module which this resolved dependency belongs to.
         *
         * @return The module.
         */
        ResolvedModuleVersion getModule();
    
        /**
         * Returns the transitive ResolvedDependency instances of this resolved dependency. Returns never null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe.go

    var feZero = &Element{0, 0, 0, 0, 0}
    
    // Zero sets v = 0, and returns v.
    func (v *Element) Zero() *Element {
    	*v = *feZero
    	return v
    }
    
    var feOne = &Element{1, 0, 0, 0, 0}
    
    // One sets v = 1, and returns v.
    func (v *Element) One() *Element {
    	*v = *feOne
    	return v
    }
    
    // reduce reduces v modulo 2^255 - 19 and returns it.
    func (v *Element) reduce() *Element {
    	v.carryPropagate()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

     * <p>Specifies the options to use to fork a Java process.</p>
     */
    @HasInternalProtocol
    public interface JavaForkOptions extends ProcessForkOptions {
        /**
         * Returns the system properties which will be used for the process.
         *
         * @return The system properties. Returns an empty map when there are no system properties.
         */
        @Input
        Map<String, Object> getSystemProperties();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p384.go

    	p384Add(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Sub sets e = t1 - t2, and returns e.
    func (e *P384Element) Sub(t1, t2 *P384Element) *P384Element {
    	p384Sub(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Mul sets e = t1 * t2, and returns e.
    func (e *P384Element) Mul(t1, t2 *P384Element) *P384Element {
    	p384Mul(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Square sets e = t * t, and returns e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p521.go

    	p521Add(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Sub sets e = t1 - t2, and returns e.
    func (e *P521Element) Sub(t1, t2 *P521Element) *P521Element {
    	p521Sub(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Mul sets e = t1 * t2, and returns e.
    func (e *P521Element) Mul(t1, t2 *P521Element) *P521Element {
    	p521Mul(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Square sets e = t * t, and returns e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Started field is set to the value of the last call.
    func (b *ContainerStatusApplyConfiguration) WithStarted(value bool) *ContainerStatusApplyConfiguration {
    	b.Started = &value
    	return b
    }
    
    // WithAllocatedResources sets the AllocatedResources field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    // apply.
    func EphemeralContainer() *EphemeralContainerApplyConfiguration {
    	return &EphemeralContainerApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

      /** Returns the empty array. */
      public static ImmutableDoubleArray of() {
        return EMPTY;
      }
    
      /** Returns an immutable array containing a single value. */
      public static ImmutableDoubleArray of(double e0) {
        return new ImmutableDoubleArray(new double[] {e0});
      }
    
      /** Returns an immutable array containing the given values, in order. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/ImmutableLongArray.java

      /** Returns the empty array. */
      public static ImmutableLongArray of() {
        return EMPTY;
      }
    
      /** Returns an immutable array containing a single value. */
      public static ImmutableLongArray of(long e0) {
        return new ImmutableLongArray(new long[] {e0});
      }
    
      /** Returns an immutable array containing the given values, in order. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top