Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 971 for designation (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/config/analysis/analyzers/virtualservice/util.go

    package virtualservice
    
    import (
    	"istio.io/api/networking/v1alpha3"
    )
    
    // AnnotatedDestination holds metadata about a Destination object that is used for analyzing
    type AnnotatedDestination struct {
    	RouteRule        string
    	ServiceIndex     int
    	DestinationIndex int
    	Destination      *v1alpha3.Destination
    }
    
    func getRouteDestinations(vs *v1alpha3.VirtualService) []*AnnotatedDestination {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProvider.java

            for (DelegateProvider delegateProvider : classOutputProviders.get(classId)) {
                delegateProvider.provider.writeNonTestOutput(delegateProvider.id, destination, writer);
            }
        }
    
        @Override
        public void writeTestOutput(long classId, long testId, TestOutputEvent.Destination destination, Writer writer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            }
        }
    
        public static void moveFile(File source, File destination) {
            logDeprecation();
            moveFileInternal(source, destination);
        }
    
        private static void moveFileInternal(File source, File destination) {
            try {
                FileUtils.moveFile(source, destination);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/SublistMerger.kt

        }
    
        public fun finish() {
            destination.addAll(remainingElements)
            remainingElements = emptyList()
        }
    }
    
    public fun <A : Any> List<A>.mergeInto(destination: MutableList<A>, f: SublistMerger<A>.() -> Unit) {
        SublistMerger(this, destination).apply {
            f()
            finish()
        }
    }
    
    public fun <A : Any> List<A>.mergeWith(f: SublistMerger<A>.() -> Unit): List<A> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    			Destination: &networking.Destination{Host: "*"},
    		}}, valid: false},
    		{name: "bad wildcard", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "foo.*"},
    		}}, valid: false},
    		{name: "bad fqdn", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "default/baz"},
    		}}, valid: false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top