Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,386 for sameId (0.16 sec)

  1. platforms/software/plugins-distribution/src/main/java/org/gradle/api/distribution/Distribution.java

    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    import org.gradle.api.file.CopySpec;
    import org.gradle.api.provider.Property;
    
    /**
     * A distribution allows to bundle an application or a library including dependencies, sources...
     */
    public interface Distribution extends Named {
    
        /**
         * The name of this distribution.
         */
        @Override
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 20:49:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DelegatingNamedDomainObjectSet.java

        }
    
        @Override
        public NamedDomainObjectProvider<T> named(String name) throws UnknownDomainObjectException {
            return getDelegate().named(name);
        }
    
        @Override
        public NamedDomainObjectProvider<T> named(String name, Action<? super T> configurationAction) throws UnknownDomainObjectException {
            return getDelegate().named(name, configurationAction);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/util/filesystem/defaultfs.go

    limitations under the License.
    */
    
    package filesystem
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"time"
    )
    
    // DefaultFs implements Filesystem using same-named functions from "os" and "io"
    type DefaultFs struct {
    	root string
    }
    
    var _ Filesystem = &DefaultFs{}
    
    // NewTempFs returns a fake Filesystem in temporary directory, useful for unit tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultRealizableTaskCollection.java

        }
    
        @Override
        public TaskProvider<T> named(String name) throws InvalidUserDataException {
            return getDelegate().named(name);
        }
    
        @Override
        public TaskProvider<T> named(String name, Action<? super T> configurationAction) throws UnknownTaskException {
            return getDelegate().named(name, configurationAction);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/toolchain/exec.go

    // gotoolchain found in $PATH.
    func execGoToolchain(gotoolchain, dir, exe string) {
    	os.Setenv(targetEnv, gotoolchain)
    	if dir == "" {
    		os.Unsetenv("GOROOT")
    	} else {
    		os.Setenv("GOROOT", dir)
    	}
    
    	// On Windows, there is no syscall.Exec, so the best we can do
    	// is run a subprocess and exit with the same status.
    	// Doing the same on Unix would be a problem because it wouldn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

        }
    
        @Named
        static class MySingletonBean {
            @Inject
            @Named("scoped")
            BeanItf myBean;
    
            @Inject
            @Named("another")
            BeanItf2 anotherBean;
        }
    
        @Named
        static class MySingletonBean2 {
            @Inject
            @Named("scoped")
            MySessionScopedBean myBean;
    
            @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:52:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ObjectFactoryExtensions.kt

     * @return the created named object
     *
     * @see [ObjectFactory.named]
     */
    inline fun <reified T : Named> ObjectFactory.named(name: String): T =
        named(T::class.java, name)
    
    
    /**
     * Create a new instance of `T`, using [parameters] as the construction parameters.
     *
     * @param T The type of object to create
     * @param parameters The construction parameters
     * @return the created named object
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_quantizable_spots_as_functions_xla_selective_quantization.mlir

      }
    }
    
    // CHECK-LABEL: func @conv2d_unmatching_unit
    // CHECK: "tf.PartitionedCall"
    // CHECK-SAME: f = @composite_conv2d_fn_1
    // Check that the `_tfl_quant_trait` attribute exists since the unit is not in `unit_wise_quantization_specs`.
    // CHECK-SAME: _tfl_quant_trait = "fully_quantizable"
    // CHECK-SAME: loc(callsite("Model/conv2d@conv2d_unmatching_unit"("Conv2D") at "QuantizationUnit({{.*}})"))
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/groovy/producer/build.gradle

            canBeConsumed = true
            canBeResolved = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.LIBRARY))
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
                attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling, Bundling.EXTERNAL))
                attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, JavaVersion.current().majorVersionNumber)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedContainersDslTest.kt

                    extendsFrom(bazar)
                }
    
                val cabin: NamedDomainObjectProvider<Configuration> = configurations.named("cabin")
                val castle: NamedDomainObjectProvider<Configuration> = configurations.named("castle") {
                    extendsFrom(cabin.get())
                }
    
                val valley: NamedDomainObjectProvider<Configuration> = configurations.register("valley")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top