Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 270 for consuming (0.8 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

                        + "reset() called multiple times, or subclass does not call super.reset(). "
                        + "Please see Javadocs of TokenStream class for more information about the correct consuming workflow.");
            }
    
            @Override
            public void close() {
            }
        };
    
        protected final Field inputPendingField;
    
        protected final Field userDictionaryField;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    If you’d like to dive into the details, check out the <<core_dependency_management.adoc#dependency_management_in_gradle,introduction to dependency management>>.
    
    Gradle provides support for consuming pre-built binaries from Maven repositories published by Gradle footnote:[Unfortunately, Cocoapods repositories aren’t yet supported as core features].
    
    We will cover how to add dependencies between projects within a multi-build project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. src/net/http/transport_dial_test.go

    	}
    	if rt.conn != c {
    		rt.t.Fatalf("RoundTrip %v: want on conn %v, got conn %v", rt.roundTripID, c.connID, rt.conn.connID)
    	}
    }
    
    // finish completes a RoundTrip by sending the request body, consuming the response body,
    // and closing the response body.
    func (rt *transportDialTesterRoundTrip) finish() {
    	rt.t.Helper()
    
    	if rt.finished {
    		return
    	}
    	rt.finished = true
    
    	<-rt.done
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    ====
    
    This will generate a BOM file for the platform, with a `<dependencyManagement>` block where its `<dependencies>` correspond to the constraints defined in the platform module.
    
    [[sec:java_platform_consumption]]
    == Consuming platforms
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

     * property, Gradle will take care of automatically adding dependencies between the consuming task and the producing tasks.</p>
     *
     * <p>You can obtain a {@code FileCollection} instance using {@link org.gradle.api.Project#files}.</p>
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            return execute(args, null)
        }
    
        ExecOutput execute(List args, List env) {
            def process = ([file.absolutePath] + args).execute(env, null)
    
            // Prevent process from hanging by consuming the output as we go.
            def output = new ByteArrayOutputStream()
            def error = new ByteArrayOutputStream()
    
            Thread outputThread = Thread.start { ByteStreams.copy(process.in, output) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    If you’d like to dive into the details, check out the <<core_dependency_management.adoc#dependency_management_in_gradle,introduction to dependency management>>.
    
    Gradle provides support for consuming pre-built binaries from Maven repositories published by Gradle footnote:[Unfortunately, Conan and Nuget repositories aren’t yet supported as core features].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                }
            }
        }
    
        /**
         * This test simulates what should be the new, better way of doing latest.release.
         * Here, we set a value on the consuming configuration, which mandates a release status.
         * This means that we will evict versions which are "integration", even during dynamic
         * version selection. The nice thing is that it uses attribute matching now, and we prove
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

            failureHasCause("java.io.IOException: Cannot snapshot ${namedPipe}: not a regular file")
        }
    
        @Requires(UnitTestPreconditions.FilePermissions)
        def "tracked task consuming unreadable content fails"() {
            def rootDir = file("build/root")
            def unreadableDir = rootDir.file("unreadable")
            assert unreadableDir.mkdirs()
            assert unreadableDir.setReadable(false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types.cc

          // its use by the new UQ op. This is because such CastOp is already legal,
          // it will not go through any conversion pattern later. Without this, that
          // CastOp will still be consuming the original UQ op and cause errors.
          op->getResult(i).replaceUsesWithIf(
              new_op->getResult(i), [](OpOperand &operand) {
                return IsQintToIntCast(operand.getOwner());
              });
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top