Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for myFile (0.11 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/BUILD

        default_visibility = [
            ":friends",
        ],
        licenses = ["notice"],
    )
    
    package_group(
        name = "friends",
        packages = [
            "//learning/brain/mobile/model_optimization/...",
            "//tensorflow/compiler/mlir/...",
            "//tensorflow/compiler/mlir/lite/...",
        ],
    )
    
    td_library(
        name = "ptq_td_files",
        srcs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/BUILD

        default_visibility = [
            ":friends",
            "//tensorflow:__pkg__",
        ],
    )
    
    package_group(
        name = "friends",
        packages = [
            "//learning/brain/mobile/lite/tooling/model_analyzer/...",
            "//learning/brain/mobile/lite/tools/analyzer/...",
            "//tensorflow/lite/python/...",
            "//tensorflow/lite/python/converter/...",
            "//tensorflow/lite/toco/...",
        ],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. ReadMe.md

     * [Kotlin Multiplatform Mobile](https://kotlinlang.org/lp/mobile/) for sharing code between Android and iOS
     * [Getting Started with Kotlin Multiplatform Mobile Guide](https://kotlinlang.org/docs/mobile/create-first-app.html)
     * [Kotlin Multiplatform Benefits](https://kotlinlang.org/docs/reference/multiplatform.html)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/net/http/filetransport_test.go

    	fsys := fstest.MapFS{
    		"index.html": {Data: []byte("index.html says hello")},
    	}
    
    	tr := &Transport{}
    	tr.RegisterProtocol("file", NewFileTransportFS(fsys))
    	c := &Client{Transport: tr}
    
    	for fname, mfile := range fsys {
    		urlstr := "file:///" + fname
    		res, err := c.Get(urlstr)
    		check("Get "+urlstr, err)
    		if res.StatusCode != 200 {
    			t.Errorf("for %s, StatusCode = %d, want 200", urlstr, res.StatusCode)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 17:07:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

                .publishAs("org.test", "myplugin", "1.0", pluginPortal, executer)
    
            settingsFile << """
                dependencyResolutionManagement {
                    components.all(MyRule)
                }
    
                class MyRule implements ComponentMetadataRule {
                    void execute(ComponentMetadataContext context) {
                        def details = context.details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. fess-crawler-lasta/pom.xml

    						<manifestEntries>
    							<Automatic-Module-Name>org.codelibs.fess.crawler.lasta</Automatic-Module-Name>
    						</manifestEntries>
    					</archive>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>com.mycila</groupId>
    				<artifactId>license-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<groupId>net.revelc.code.formatter</groupId>
    				<artifactId>formatter-maven-plugin</artifactId>
    			</plugin>
    		</plugins>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_simulation_test.go

    metadata:
      name: vs1
      namespace: default
    spec:
      gateways:
      - istio-system/ingressgateway
      hosts:
      - mysite.example.com
      tls:
      - match:
        - port: 443
          sniHosts:
          - mysite.example.com
        route:
        - destination:
            host: mysite.default.svc.cluster.local
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppInstall.java

        public VisualCpp forPlatform(NativePlatformInternal targetPlatform) {
            // TODO:ADAM - ARM only if the target OS is Windows 8 or later
            // TODO:MPUT - ARM also if the target OS is Windows RT or Windows Phone/Mobile/CE
            // TODO:ADAM - IA64 only if the target OS is Windows 2008 or earlier
            if (!targetPlatform.getOperatingSystem().isWindows()) {
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		decorator: func(obj runtime.Object) {
    			mile("Decorator")
    		},
    		afterCreate: func(obj runtime.Object, opts *metav1.CreateOptions) {
    			mile("AfterCreate")
    		},
    		beginCreate: func(_ context.Context, obj runtime.Object, _ *metav1.CreateOptions) (FinishFunc, error) {
    			mile("BeginCreate")
    			return func(_ context.Context, success bool) {
    				mile(fmt.Sprintf("FinishCreate(%v)", success))
    			}, nil
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pom.xml

    						<manifestEntries>
    							<Automatic-Module-Name>org.codelibs.fess.suggest</Automatic-Module-Name>
    						</manifestEntries>
    					</archive>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>com.mycila</groupId>
    				<artifactId>license-maven-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<artifactId>maven-surefire-plugin</artifactId>
    			</plugin>
    			<plugin>
    				<groupId>org.jacoco</groupId>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu May 30 06:30:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top