Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 983 for Destinations (0.17 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                doRead(classId, 0, false, destination, writer);
            }
    
            public void writeTestOutput(long classId, long testId, TestOutputEvent.Destination destination, java.io.Writer writer) {
                doRead(classId, testId, false, destination, writer);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

            }
    
            @Override
            public boolean has(TestOutputEvent.Destination destination) {
                return testResultsProvider.hasOutput(classId, testId, destination);
            }
    
            @Override
            public void write(TestOutputEvent.Destination destination, Writer writer) {
                testResultsProvider.writeTestOutput(classId, testId, destination, writer);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestResultsProvider.java

         *
         * Writes all output for the test class.
         */
        void writeAllOutput(long classId, TestOutputEvent.Destination destination, Writer writer);
    
        void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestOutputEvent.java

        private final Destination destination;
        private final String message;
    
        @UsedByScanPlugin("test-distribution")
        public DefaultTestOutputEvent(Destination destination, String message) {
            this.destination = destination;
            this.message = message;
        }
    
        @Override
        public Destination getDestination() {
            return destination;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/GenerateIvyDescriptor.java

        public File getDestination() {
            return destination == null ? null : getFileResolver().resolve(destination);
        }
    
        /**
         * Sets the destination the descriptor will be written to.
         *
         * @param destination The file the descriptor will be written to.
         * @since 4.0
         */
        public void setDestination(File destination) {
            this.destination = destination;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/GenerateMavenPom.java

        public File getDestination() {
            return destination == null ? null : getFileResolver().resolve(destination);
        }
    
        /**
         * Sets the destination the descriptor will be written to.
         *
         * @param destination The file the descriptor will be written to.
         * @since 4.0
         */
        public void setDestination(File destination) {
            this.destination = destination;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

        void exclude();
    
        /**
         * Sets the destination name of this file.
         *
         * @param name The destination name of this file.
         */
        void setName(String name);
    
        /**
         * Sets the destination path of this file.
         *
         * @param path The path of this file.
         */
        void setPath(String path);
    
        /**
         * Sets the destination path of this file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice_test.go

    							{
    								Destination: &networking.Destination{
    									Host: "productpage.org",
    									Port: &networking.PortSelector{
    										Number: 80,
    									},
    									Subset: "v2",
    								},
    							},
    						},
    					},
    					{
    						Route: []*networking.HTTPRouteDestination{
    							{
    								Destination: &networking.Destination{
    									Host: "productpage.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/networkfilter_test.go

    						},
    					},
    				},
    			},
    			routes: []*networking.RouteDestination{
    				{
    					Destination: &networking.Destination{
    						Host:   "example.com",
    						Port:   &networking.PortSelector{Number: 443},
    						Subset: "prod",
    					},
    					Weight: 75,
    				},
    				{
    					Destination: &networking.Destination{
    						Host:   "example-canary.com",
    						Port:   &networking.PortSelector{Number: 443},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

            doTransform(original).writeTo(destination);
        }
    
        public void transform(String original, OutputStream destination) {
            doTransform(original).writeTo(destination);
        }
    
        public void transform(Node original, Writer destination) {
            doTransform(original).writeTo(destination);
        }
    
        public void transform(Node original, OutputStream destination) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top