Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,064 for sameId (0.19 sec)

  1. tensorflow/c/kernels.h

    // Interprets the named kernel construction attribute as bool and
    // places it into *val. *status is set to TF_OK.
    //
    // If the attribute could not be found or could not be interpreted as
    // bool, *status is populated with an error.
    TF_CAPI_EXPORT extern void TF_OpKernelConstruction_GetAttrBool(
        TF_OpKernelConstruction* ctx, const char* attr_name, TF_Bool* val,
        TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

                    }
                }
            }
        }
    }
    """
            // This is a directory named 'directory'
            file("src/other/directory").mkdirs()
            // This is a header named 'directory'
            file("src/main/headers/directory") << '#pragma message("including directory named header")'
            file("src/main/headers/macro.h") << '#pragma message("including macro header")'
    
            sourceFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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