Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for sourceDir (0.21 sec)

  1. tensorflow/c/experimental/ops/gen/common/path_config.cc

          tensorflow::str_util::Split(source_dir, "/");
      auto source_tfroot_pos = std::find(source_path_components.begin(),
                                         source_path_components.end(), tf_root_dir);
      if (source_tfroot_pos != source_path_components.end()) {
        tf_prefix_dir =
            absl::StrJoin(source_path_components.begin(), source_tfroot_pos, "/");
      } else {
        tf_prefix_dir = source_dir;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                            def sourceJar = this.project(":child1").tasks.getByName("sourceJar")
                            def javadocJar = this.project(":child1").tasks.getByName("javadocJar")
                            dep.buildDependencies(sourceJar, javadocJar)
                            dep.publicationSourcePath = cp.fileReference(sourceJar.archiveFile.get().asFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    		return nil, err
    	}
    
    	var sourceVip string
    	var hostMac string
    	if isOverlay(hnsNetworkInfo) {
    		if !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.WinOverlay) {
    			return nil, fmt.Errorf("WinOverlay feature gate not enabled")
    		}
    		err = hcn.RemoteSubnetSupported()
    		if err != nil {
    			return nil, err
    		}
    		sourceVip = config.SourceVip
    		if len(sourceVip) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         * plugins {
         *     id 'maven-publish'
         * }
         *
         * task sourceJar(type: Jar) {
         *   archiveClassifier = "sources"
         * }
         *
         * publishing {
         *   publications {
         *     maven(MavenPublication) {
         *       artifact sourceJar // Publish the output of the sourceJar task
         *       artifact 'my-file-name.jar' // Publish a file created outside of the build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            1 * sourceDirs.visitStructure(_) >> { FileCollectionStructureVisitor visitor -> visitor.visitCollection(null, allFiles) }
            return sourceSet
        }
    
        private WindowsResourceSet resourceSet(File... files) {
            def allFiles = files as Set
            def sourceSet = Mock(WindowsResourceSet)
            def sourceDirs = Mock(TestSourceDirectorySet)
            1 * sourceSet.source >> sourceDirs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    			sourceIP: "10.0.0.2",
    			destIP:   testNodeIP,
    			destPort: svcNodePort,
    			output:   "REJECT",
    		},
    		{
    			name:     "external to NodePort with no endpoints",
    			sourceIP: testExternalClient,
    			destIP:   testNodeIP,
    			destPort: svcNodePort,
    			output:   "REJECT",
    		},
    		{
    			name:     "pod to LoadBalancer IP with no endpoints",
    			sourceIP: "10.0.0.2",
    			destIP:   svcLBIP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf_mlir_translate_main.cc

                                 llvm::raw_ostream& os) {
          auto sourceMgr = std::make_shared<llvm::SourceMgr>();
          sourceMgr->AddNewSourceBuffer(std::move(ownedBuffer), llvm::SMLoc());
          mlir::MLIRContext context;
          mlir::SourceMgrDiagnosticHandler diagnostic_handler(*sourceMgr, &context);
          return (*requested_translation)(sourceMgr, os, &context);
        };
    
        if (splitInputFile) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/python/mlir_wrapper/filecheck_wrapper.cc

    PYBIND11_MODULE(filecheck_wrapper, m) {
      m.def("check", [](std::string input, std::string check) {
        llvm::FileCheckRequest fcr;
        llvm::FileCheck fc(fcr);
        llvm::SourceMgr SM = llvm::SourceMgr();
        SM.AddNewSourceBuffer(llvm::MemoryBuffer::getMemBuffer(input),
                              llvm::SMLoc());
        SM.AddNewSourceBuffer(llvm::MemoryBuffer::getMemBuffer(check),
                              llvm::SMLoc());
        fc.readCheckFile(SM, llvm::StringRef(check));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 08:13:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * }
         *
         * task sourceJar(type: Jar) {
         *   archiveClassifier = "source"
         * }
         *
         * task genDocs {
         *   doLast {
         *     // Generate 'my-docs-file.htm'
         *   }
         * }
         *
         * publishing {
         *   publications {
         *     ivy(IvyPublication) {
         *       artifact sourceJar // Publish the output of the sourceJar task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    	tracer.runChain(utiliptables.TableFilter, kubeServicesChain, sourceIP, protocol, destIP, destPort)
    	tracer.runChain(utiliptables.TableFilter, kubeExternalServicesChain, sourceIP, protocol, destIP, destPort)
    	tracer.runChain(utiliptables.TableFilter, kubeNodePortsChain, sourceIP, protocol, destIP, destPort)
    	tracer.runChain(utiliptables.TableFilter, kubeProxyFirewallChain, sourceIP, protocol, destIP, destPort)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top