Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,277 for bundles (0.14 sec)

  1. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      return Status();
    }
    
    SavedModelV2Bundle* TFSavedModelAPI::GetBundle() { return &this->bundle_; }
    
    TFSavedModelAPI::TFSavedModelAPI(const std::string& directory,
                                     SavedModelV2Bundle bundle,
                                     RevivedObjects revived_objects)
        : directory_(directory),
          bundle_(std::move(bundle)),
          revived_objects_(std::move(revived_objects)) {}
    
    Status TFSavedModelAPI::Load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/union_content.go

    }
    
    // CurrentCABundleContent provides ca bundle byte content
    func (c unionCAContent) CurrentCABundleContent() []byte {
    	caBundles := [][]byte{}
    	for _, curr := range c {
    		if currCABytes := curr.CurrentCABundleContent(); len(currCABytes) > 0 {
    			caBundles = append(caBundles, []byte(strings.TrimSpace(string(currCABytes))))
    		}
    	}
    
    	return bytes.Join(caBundles, []byte("\n"))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. misc/ios/go_ios_exec.go

    	return nil, errors.New("failed to set up idevicedebugserverproxy")
    }
    
    // findDeviceAppPath returns the device path to the app with the
    // given bundle ID. It parses the output of ideviceinstaller -l -o xml,
    // looking for the bundle ID and the corresponding Path value.
    func findDeviceAppPath(bundleID string) (string, error) {
    	cmd := idevCmd(exec.Command("ideviceinstaller", "-l", "-o", "xml"))
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h

      SavedModelV2Bundle* GetBundle() override;
    
     private:
      TFSavedModelAPI(const std::string& directory, SavedModelV2Bundle bundle,
                      RevivedObjects revived_objects);
    
      std::string directory_;
      SavedModelV2Bundle bundle_;
      RevivedObjects revived_objects_;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. releasenotes/notes/drop-legacy-spiffe-bundle-endpoints.yaml

    John Howard <******@****.***> 1683594068 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 01:01:08 UTC 2023
    - 134 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    - Where to find the built testable bundle (on macOS) or executable (on Linux) (property: link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html#org.gradle.nativeplatform.test.xctest.tasks.XCTest:testInstallDirectory[XCTest.getTestInstalledDirectory()])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/internal/moddeps/moddeps_test.go

    			r.run(t, goBinCopy, "generate", `-run=^//go:generate bundle `, pkgs) // See issue 41409.
    			advice := "$ cd " + m.Dir + "\n" +
    				"$ go mod tidy                               # to remove extraneous dependencies\n" +
    				"$ go mod vendor                             # to vendor dependencies\n" +
    				"$ go generate -run=bundle " + pkgs + "               # to regenerate bundled packages\n"
    			if m.Path == "std" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyCollector.java

        <D extends Dependency> void bundle(Iterable<? extends D> bundle, Action<? super D> configuration);
    
        /**
         * Add a bundle.
         *
         * @param bundle the bundle to add
         *
         * @since 8.6
         */
        <D extends Dependency> void bundle(Provider<? extends Iterable<? extends D>> bundle);
    
        /**
         * Add a bundle and configure them.
         *
         * @param bundle the bundle to add
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/groovy/build.gradle

            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        outputs.file(layout.buildDirectory.file("bundle.js"))
            .withPropertyName("bundle")
    }
    // end::bundle-task[]
    
    tasks.register('printBundle') {
        dependsOn bundle
    
        def projectLayout = layout
    
        doLast {
            println projectLayout.buildDirectory.file("bundle.js").get().asFile.text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/build.gradle

        BundleTask() {
            args.addAll("run", "bundle")
            bundle = projectLayout.buildDirectory.file("bundle.js")
            scripts = projectLayout.projectDirectory.dir("scripts")
            configFiles.from(projectLayout.projectDirectory.file("package.json"))
            configFiles.from(projectLayout.projectDirectory.file("package-lock.json"))
        }
    }
    
    tasks.register('bundle', BundleTask)
    // end::bundle-task[]
    
    tasks.register('printBundle') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top