Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 7,138 for sameId (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr.mlir

    // Test simple serialized computation consisting of a function named `main`
    // with a tf.Identity op forwarding the function single argument to the function
    // single result.
    
    // CHECK-LABEL: module
    // CHECK-SAME:  attributes {tf.versions = {producer = 888 : i32}} {
    // CHECK-NEXT:   func @main([[ARG0:%.+]]: tensor<?xi32> loc({{.*}})) -> tensor<?xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 13:27:00 UTC 2022
    - 998 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

            }
    
            container.named<DomainObject>("foo").configure {
                foo = "reified access"
            }
            container.named<DomainObject>("foo") {
                bar = "reified configuration"
            }
    
            container.named("bar", DomainObject::class).configure {
                foo = "typed access"
            }
            container.named("bar", DomainObject::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

    }
    
    def OptimizeGlobalTensorsPass : Pass<"tf-saved-model-optimize-global-tensors", "ModuleOp"> {
      let summary = "Optimize tf_saved_model.global_tensor's.";
    
      let constructor = "mlir::tf_saved_model::CreateOptimizeGlobalTensorsPass()";
    }
    
    def RemoveVariablesInSessionInitializerPass : Pass<"tf-saved-model-remove-vars-in-session-initializer", "ModuleOp"> {
      let summary = "Remove variables in tf saved model's session initializer.";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top