Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,074 for collects (0.13 sec)

  1. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

        /**
         * Returns a {@link DependencyCollector} that collects the set of implementation dependencies.
         * <p>
         * <code>implementation</code> dependencies are used at compilation and runtime.
         *
         * @return a {@link DependencyCollector} that collects the set of implementation dependencies
         * @since 7.6
         */
        DependencyCollector getImplementation();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/3-iter.md

    - [Backward](/pkg/slices#Backward) returns an iterator that loops over
      a slice backward.
    - [Collect](/pkg/slices#Collect) collects values from an iterator into
      a new slice.
    - [AppendSeq](/pkg/slices#AppendSeq) appends values from an iterator to
      an existing slice.
    - [Sorted](/pkg/slices#Sorted) collects values from an iterator into a
      new slice, and then sorts the slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

         * @see #collect(DependencyResolverRequest)
         */
        @Nonnull
        default DependencyResolverResult collect(@Nonnull Session session, @Nonnull DependencyCoordinate root) {
            return collect(DependencyResolverRequest.build(session, DependencyResolverRequest.RequestType.COLLECT, root));
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/slices/iter.go

    	}
    	return s
    }
    
    // Collect collects values from seq into a new slice and returns it.
    func Collect[E any](seq iter.Seq[E]) []E {
    	return AppendSeq([]E(nil), seq)
    }
    
    // Sorted collects values from seq into a new slice, sorts the slice,
    // and returns it.
    func Sorted[E cmp.Ordered](seq iter.Seq[E]) []E {
    	s := Collect(seq)
    	Sort(s)
    	return s
    }
    
    // SortedFunc collects values from seq into a new slice, sorts the slice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

    import kotlin.test.assertNotNull
    import kotlin.test.assertNull
    
    
    object ResolutionTracerTest {
        val schema = schemaFromTypes(TopLevelReceiver::class, listOf(TopLevelReceiver::class))
    
        @Test
        fun `collects successful resolution of function`() {
            val resolver = tracingCodeResolver()
            val result = schema.resolve(
                """
                f(0) // must be an unresolved property x
                """.trimIndent(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/net/http/pprof/testdata/delta_mutex.go

    // license that can be found in the LICENSE file.
    
    // This binary collects a 1s delta mutex profile and dumps it to os.Stdout.
    //
    // This is in a subprocess because we want the base mutex profile to be empty
    // (as a regression test for https://go.dev/issue/64566) and the only way to
    // force reset the profile is to create a new subprocess.
    //
    // This manually collects the HTTP response and dumps to stdout in order to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

        String getId();
    
        /**
         * Notifies the build user of whatever problems have been collected. May report problems to the console, or generate a report
         * or fail with one or more exceptions, or all of the above.
         *
         * @param reportDir The base directory that reports can be generated into.
         * @param validationFailures Collects any validation failures.
         */
        void report(File reportDir, ProblemConsumer validationFailures);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/device_util.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_structs.h"
    #include "tensorflow/core/common_runtime/device_set.h"
    #include "tensorflow/core/util/device_name_utils.h"
    
    namespace tensorflow {
    
    // Collects all devices known to the system by name and adds them as a
    // `tf.devices` dictionary attribute with a full device name as a key, and
    // device metadata as a value.
    //
    // Device names added in full parsed device form:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 05 20:02:33 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            then:
            root.ownStrictVersionConstraints == StrictVersionConstraints.EMPTY
            root.ownStrictVersionConstraints.getModules().isEmpty()
        }
    
        def "collects strict version constraints"() {
            Set<ModuleIdentifier> constraintsSet = []
    
            when:
            root.maybeCollectStrictVersions(constraintsSet, edge(root).dependencyState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue16095.go

    		x[i] = byte(i)
    	}
    
    	// Force x to be allocated on the heap.
    	sink = &x
    	sink = nil
    
    	// Go to deferreturn after the panic below.
    	defer func() {
    		recover()
    	}()
    
    	// This call collects the heap-allocated version of x (oops!)
    	runtime.GC()
    
    	// Allocate that same object again and clobber it.
    	y := new([20]byte)
    	for i := 0; i < 20; i++ {
    		y[i] = 99
    	}
    	// Make sure y is heap allocated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 16:48:48 UTC 2016
    - 1.9K bytes
    - Viewed (0)
Back to top