Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,196 for registry_ (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

    static void RegisterMlirInputDialects(mlir::DialectRegistry& registry) {
      // TODO(b/259459405): Remove support for stablehlo as an input.
      registry
          .insert<mlir::arith::ArithDialect, mlir::func::FuncDialect,
                  mlir::TF::TensorFlowDialect, mlir::stablehlo::StablehloDialect,
                  mlir::quant::QuantizationDialect>();
      mlir::func::registerAllExtensions(registry);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

    import net.rubygrapefruit.platform.internal.jni.OsxFileEventFunctions.OsxFileWatcher;
    import org.gradle.internal.watch.WatchingNotSupportedException;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.Collections;
    import java.util.concurrent.BlockingQueue;
    import java.util.concurrent.TimeUnit;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeToolChainRegistryInternal.java

        /**
         * Registers a default ToolChain, which may later be added to the registry via {@link #addDefaultToolChains()}.
         */
        void registerDefaultToolChain(String name, Class<? extends NativeToolChain> type);
    
        /**
         * Adds default tool chains to the registry.
         */
        void addDefaultToolChains();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pkg/dns/client/dns_test.go

    				Ips:      []string{"2001:db8:0:0:0:ff00:42:8329"},
    				Registry: "External",
    			},
    			"dual.localhost": {
    				Ips:      []string{"2.2.2.2", "2001:db8:0:0:0:ff00:42:8329"},
    				Registry: "External",
    			},
    			"ipv4.localhost": {
    				Ips:      []string{"2.2.2.2"},
    				Registry: "External",
    			},
    			"*.b.wildcard": {
    				Ips:      []string{"11.11.11.11"},
    				Registry: "External",
    			},
    			"*.wildcard": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util_test.cc

      mlir::DialectRegistry registry;
      mlir::registerAllDialects(registry);
      mlir::RegisterAllTensorFlowDialects(registry);
    
      mlir::registerAllPasses();
      mlir::registerTensorFlowPasses();
    
      EXPECT_TRUE(mlir::MlirOptMain(output_stream->os(), std::move(input_file),
                                    registry,
                                    mlir::MlirOptMainConfig{}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 13:40:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. pkg/dns/proto/nds.pb.go

    	// The name of the service registry containing the service (e.g. 'Kubernetes').
    	Registry string `protobuf:"bytes,2,opt,name=registry,proto3" json:"registry,omitempty"`
    	// The k8s service name. Only applies when registry=`Kubernetes`
    	Shortname string `protobuf:"bytes,3,opt,name=shortname,proto3" json:"shortname,omitempty"`
    	// The k8s namespace for the service. Only applies when registry=`Kubernetes`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pkg/registry/resource/resourceclassparameters/storage/storage_test.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/registry/generic"
    	genericregistrytest "k8s.io/apiserver/pkg/registry/generic/testing"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/kubernetes/pkg/apis/resource"
    	_ "k8s.io/kubernetes/pkg/apis/resource/install"
    	"k8s.io/kubernetes/pkg/registry/registrytest"
    )
    
    func newStorage(t *testing.T) (*REST, *etcd3testing.EtcdTestServer) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiKotlinIntegrationTest.groovy

                    override fun apply(settings: Settings) {
                        settings.plugins.apply("jvm-toolchain-management")
                        val registry: JavaToolchainResolverRegistry = toolchainResolverRegistry
                        registry.register(${className}::class.java)
                    }
    
                }
    
                ${code}
    
                apply<${className}Plugin>()
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.watch.registry;
    
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.watch.WatchingNotSupportedException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/os/user/lookup_windows.go

    }
    
    // findHomeDirInRegistry finds the user home path based on the uid.
    func findHomeDirInRegistry(uid string) (dir string, e error) {
    	k, e := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\`+uid, registry.QUERY_VALUE)
    	if e != nil {
    		return "", e
    	}
    	defer k.Close()
    	dir, _, e = k.GetStringValue("ProfileImagePath")
    	if e != nil {
    		return "", e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top