Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 853 for Extract (0.87 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/extract_tpu_copy_with_dynamic_shape_op.mlir

    // RUN: tf-opt -split-input-file -verify-diagnostics -tf-extract-tpu-copy-with-dynamic-shape-op %s | FileCheck %s
    
    // Test that extract TPUCopyWithDynamicShape from host launch to device launch.
    
    module attributes {tf.devices = {"/job:localhost/replica:0/task:0/device:COMPOSITE:0", "/job:localhost/replica:0/task:0/device:CPU:0", "/job:localhost/replica:0/task:0/device:TPU:0", "/job:localhost/replica:0/task:0/device:TPU_SYSTEM:0"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/SpecializedModelMapStrategyTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract
    
    import org.gradle.model.ModelMap
    import org.gradle.model.internal.manage.schema.SpecializedMapSchema
    import org.gradle.model.internal.type.ModelType
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/VariantAspect.java

     */
    
    package org.gradle.platform.base.internal;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.model.internal.manage.schema.ModelProperty;
    import org.gradle.model.internal.manage.schema.extract.ModelSchemaAspect;
    
    import java.util.Set;
    
    public class VariantAspect implements ModelSchemaAspect {
        private final Set<ModelProperty<?>> dimensions;
    
        public VariantAspect(Set<ModelProperty<?>> dimensions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/AbstractProxyClassGenerator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    
    public class AbstractProxyClassGenerator {
        protected static final String CONSTRUCTOR_NAME = "<init>";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelStoreTestUtils.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract
    
    import groovy.transform.CompileStatic
    import org.codehaus.groovy.reflection.ClassInfo
    
    @CompileStatic
    class ModelStoreTestUtils {
        private final static Object GLOBAL_CLASS_SET
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java

        /**
         * Transform Graph into a Collection of metadata objects that
         * could serve as a classpath for a particular scope
         *
         * @param dirtyGraph - dependency graph
         * @param scope - which classpath to extract
         * @param resolve - whether to resolve artifacts.
         * @return Collection of metadata objects in the linked subgraph of the graph which
         *             contains the graph.getEntry() vertice
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. security/pkg/pki/util/keycertbundle.go

    func (b *KeyCertBundle) CertOptions() (*CertOptions, error) {
    	b.mutex.RLock()
    	defer b.mutex.RUnlock()
    	ids, err := ExtractIDs(b.cert.Extensions)
    	if err != nil {
    		return nil, fmt.Errorf("failed to extract id %v", err)
    	}
    	if len(ids) != 1 {
    		return nil, fmt.Errorf("expect single id from the cert, found %v", ids)
    	}
    
    	opts := &CertOptions{
    		Host:      ids[0],
    		Org:       b.cert.Issuer.Organization[0],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    	}
    	if len(actual.Version) == 0 && actual.Group == defaultGVK.Group {
    		actual.Version = defaultGVK.Version
    	}
    	return actual
    }
    
    // Decode attempts to convert the provided data into YAML or JSON, extract the stored schema kind, apply the provided default gvk, and then
    // load that data into an object matching the desired schema kind or the provided into.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/savedir.go

    // Savedir archives a directory tree as a txtar archive printed to standard output.
    //
    // Usage:
    //
    //	go run savedir.go /path/to/dir >saved.txt
    //
    // Typically the tree is later extracted during a test with tg.extract("testdata/saved.txt").
    package main
    
    import (
    	"cmd/go/internal/str"
    	"flag"
    	"fmt"
    	"internal/txtar"
    	"io/fs"
    	"log"
    	"os"
    	"path/filepath"
    	"strings"
    	"unicode/utf8"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionContext.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema.extract;
    
    import org.gradle.api.Action;
    import org.gradle.model.internal.inspect.ValidationProblemCollector;
    import org.gradle.model.internal.manage.schema.ModelSchema;
    import org.gradle.model.internal.type.ModelType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top