Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for Transformed (0.35 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * transformations on the remote repositories being used. For example if you replace existing repositories with
         * mirrors then it's easier to just replace the whole list with a new list of transformed repositories.
         *
         * @param repositories
         * @return This request, never {@code null}.
         */
        MavenExecutionRequest setRemoteRepositories(List<ArtifactRepository> repositories);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    //	func _(T, int) string { ... }
    //
    // In this way, the raw function bodies and const/var initializer
    // expressions are preserved but refer to the "cooked" objects imported
    // from "·this·", and none of the transformed package-level declarations
    // actually declares anything. In the example above, the reference to k
    // in the argument of the call to C.malloc resolves to "·this·".k, which
    // has an accurate type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Optional.java

       * <p><b>Java 9 users:</b> some use cases can be written with calls to {@code optional.stream()}.
       *
       * @since 11.0
       */
      public abstract Set<T> asSet();
    
      /**
       * If the instance is present, it is transformed with the given {@link Function}; otherwise,
       * {@link Optional#absent} is returned.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is similar to Java 8's {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

        public TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def failure = new RuntimeException("main")
        def transformedException = new RuntimeException("transformed")
    
        def setup() {
            _ * exceptionAnalyser.transform(failure) >> transformedException
            def taskGraph = Stub(TaskExecutionGraphInternal)
            _ * gradleMock.taskGraph >> taskGraph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    	return func() (State, error) {
    		transformer, encObject, cacheKey, errGen := GenerateTransformer(ctx, string(uuid.NewUUID()), envelopeService, useSeed)
    		if errGen != nil {
    			return State{}, errGen
    		}
    		return State{
    			Transformer:         transformer,
    			EncryptedObject:     *encObject,
    			UID:                 "panda",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

            taskTypeWithOutputDirectoryProperty(buildFile)
            taskTypeLogsArtifactCollectionDetails(buildFile)
        }
    
        /**
         * Asserts that exactly the given files where transformed by the 'simple' transforms below
         */
        void assertTransformed(String... fileNames) {
            assert result.output.findAll("processing \\[(.+)\\]").sort() == fileNames.collect { "processing [$it]" }.sort()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Response.kt

     */
    class Response internal constructor(
      /**
       * The request that initiated this HTTP response. This is not necessarily the same request issued
       * by the application:
       *
       * * It may be transformed by the user's interceptors. For example, an application interceptor
       *   may add headers like `User-Agent`.
       * * It may be the request generated in response to an HTTP redirect or authentication
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Optional.java

       * <p><b>Java 9 users:</b> some use cases can be written with calls to {@code optional.stream()}.
       *
       * @since 11.0
       */
      public abstract Set<T> asSet();
    
      /**
       * If the instance is present, it is transformed with the given {@link Function}; otherwise,
       * {@link Optional#absent} is returned.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is similar to Java 8's {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/compress/bzip2/bzip2.go

    	// tree indexes telling us which tree to use for each 50 symbol block.
    	numSelectors := br.ReadBits(15)
    	treeIndexes := make([]uint8, numSelectors)
    
    	// The tree indexes are move-to-front transformed and stored as unary
    	// numbers.
    	mtfTreeDecoder := newMTFDecoderWithRange(numHuffmanTrees)
    	for i := range treeIndexes {
    		c := 0
    		for {
    			inc := br.ReadBits(1)
    			if inc == 0 {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

        }
    
        /**
         * Converts the DSL representation of a variant's dependencies to one suitable for a POM.
         * Dependencies are transformed by querying the provided {@link VariantDependencyResolver}
         * for their resolved coordinates.
         */
        private static class MavenDependencyFactory {
    
            private final VariantWarningCollector warnings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top