Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getWrite (0.27 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                                );
                                secondaryAccess.get().forEach(it -> {
                                    System.out.println("secondaryAccess { " +
                                            it.getName().get() + ", " + it.getRead().get() + ", " + it.getWrite().get() +
                                            "}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelUrlNormalizer.java

                        .build());
            }
    
            DistributionManagement dist = model.getDistributionManagement();
            if (dist != null) {
                Site site = dist.getSite();
                if (site != null) {
                    builder.distributionManagement(dist.withSite(site.withUrl(normalize(site.getUrl()))));
                }
            }
    
            return builder.build();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelXmlFactory.java

            Model content = nonNull(request.getContent(), "content");
            Path path = request.getPath();
            OutputStream outputStream = request.getOutputStream();
            Writer writer = request.getWriter();
            if (writer == null && outputStream == null && path == null) {
                throw new IllegalArgumentException("writer, outputStream or path must be non null");
            }
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                DistributionManagement source,
                boolean sourceDominant,
                Map<Object, Object> context) {
            Site src = source.getSite();
            if (src != null) {
                Site tgt = target.getSite();
                if (tgt == null) {
                    tgt = Site.newBuilder(false).build();
                }
                Site.Builder sbuilder = Site.newBuilder(tgt);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            }
    
            @Override
            public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) {
                ISuite suite = context.getSuite();
                List<IMethodInstance> filtered = new LinkedList<IMethodInstance>();
                for (IMethodInstance candidate : methods) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      ResourceId GetResourceId() const { return resource_id_; }
    
      void SetAlloc() { effects_.set(kAlloc); }
      void SetFree() { effects_.set(kFree); }
      void SetRead() { effects_.set(kRead); }
      void SetWrite() { effects_.set(kWrite); }
      void SetUnknownEffect() { effects_.set(); }
      void SetResourceId(ResourceId resource_id) { resource_id_ = resource_id; }
      void AddEffects(const SideEffects& other_effects) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    writeIndent() throws java.io.IOException; public void setProperty(String, Object) throws IllegalArgumentExcep, IllegalStateExceptio; public Object getProperty(String) throws IllegalArgumentExcep; private String getLocation(); public java.io.Writer getWriter(); public void setOutput(java.io.Writer); public void setOutput(java.io.OutputStream, String) throws java.io.IOException; public void startDocument(String, Boolean) throws java.io.IOException; public void endDocument() throws java.io.IOException;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        int64_t &next_id) {
      llvm::StringRef device = GetDeviceOrEmpty(getOperation());
      return {GetResourceHandleValueAndIdBase(getContainer(), getSharedName(),
                                              device, getWriter(),
                                              resource_handle_id_map, next_id)};
    }
    
    //===----------------------------------------------------------------------===//
    // TPUExecuteOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top