Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for getVcs (0.25 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

        private XmlFileContentMerger iws;
    
        /**
         * Enables advanced manipulation of the output XML.
         * <p>
         * For example see docs for {@link IdeaWorkspace}
         */
        public XmlFileContentMerger getIws() {
            return iws;
        }
    
        public void setIws(XmlFileContentMerger iws) {
            this.iws = iws;
        }
    
        /**
         * Enables advanced manipulation of the output XML.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

     * <pre>
     * class MyTask implements Reporting&lt;MyReportContainer&gt; {
     *     // implementation
     * }
     *
     * interface MyReportContainer extends ReportContainer&lt;Report&gt; {
     *     Report getHtml();
     *     Report getCsv();
     * }
     * </pre>
     * <p>
     * The reporting aspects of such a task can be configured as such:
     * </p>
     * <pre>
     * task my(type: MyTask) {
     *     reports {
     *         html.required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaWorkspace.java

        }
    
        @Override
        public XmlTransformer getXmlTransformer() {
            if (workspace == null) {
                return super.getXmlTransformer();
            }
            return workspace.getIws().getXmlTransformer();
        }
    
        /**
         * The Idea workspace model containing the details required to generate the workspace file.
         */
        @Internal
        public IdeaWorkspace getWorkspace() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/context/CIFSContextWrapper.java

        }
    
    
        @Override
        public Configuration getConfig () {
            return this.delegate.getConfig();
        }
    
    
        @Override
        public DfsResolver getDfs () {
            return this.delegate.getDfs();
        }
    
    
        @Override
        public Credentials getCredentials () {
            return this.delegate.getCredentials();
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables.cc

            absl::StrCat("failed to fetch device manager: ", status.message()));
    
      // Fetch all varHandleOp in the function.
      llvm::SmallVector<TF::VarHandleOp, 4> var_ops;
      for (auto var_handle_op : block.getOps<TF::VarHandleOp>())
        var_ops.emplace_back(var_handle_op);
    
      // Get resources from Session.
      auto resource_tensors_or = GetResourcesFromSession(var_ops, session);
      if (!resource_tensors_or.ok())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 19:14:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/path/filepath/match.go

    					failed = true
    				}
    				s = s[1:]
    			}
    			chunk = chunk[1:]
    		}
    	}
    	if failed {
    		return "", false, nil
    	}
    	return s, true, nil
    }
    
    // getEsc gets a possibly-escaped character from chunk, for a character class.
    func getEsc(chunk string) (r rune, nchunk string, err error) {
    	if len(chunk) == 0 || chunk[0] == '-' || chunk[0] == ']' {
    		err = ErrBadPattern
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/context/BaseContext.java

        @Override
        public Configuration getConfig () {
            return this.config;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.CIFSContext#getDfs()
         */
        @Override
        public DfsResolver getDfs () {
            return this.dfs;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.CIFSContext#getNameServiceClient()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 27 18:25:00 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/unwrap_xla_call_module_op.cc

               call_op.getOperands())) {
        arg_mapper.map(func_arg, operand);
      }
    
      Region& function_body = func_op.getBody();
      IRMapping new_op_mapper;
      for (Operation& op : function_body.getOps()) {
        if (llvm::isa<func::ReturnOp>(op)) {
          for (auto [call_result, return_value] :
               llvm::zip_equal(call_op.getResults(), op.getOperands())) {
            Value new_result = new_op_mapper.lookup(return_value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

            idsOfBuildTrees.size()
        }
    
        List<ScopeIds> getIds() {
            idsOfBuildTrees.collect { it.get(":") }
        }
    
        Map<String, ScopeIds> idsOfBuildTree(int buildNum) {
            idsOfBuildTrees.get(buildNum)
        }
    
        ScopeIds ids(int buildNum) {
            assert idsOfBuildTrees.size() > buildNum
            getIds()[buildNum]
        }
    
        UniqueId getBuildInvocationId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/trim_functions_tf.cc

      // if no trim_funcs_allowlist_ is specified, this pass is a no-op.
      if (trim_funcs_allowlist_.empty()) return false;
    
      llvm::SmallVector<func::FuncOp, 4> funcs_to_trim;
      for (auto func : getOperation().getOps<func::FuncOp>()) {
        if (llvm::is_contained(trim_funcs_allowlist_, func.getName())) {
          // If no main is specified in the allowlist, use the 1st func
          // in trim_funcs_allowlist as the main.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
Back to top