Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 983 for Destinations (0.28 sec)

  1. tests/integration/pilot/label_test.go

    kind: VirtualService
    metadata:
      name: {{.Destination}}
    spec:
      hosts:
      - {{.Destination}}
      http:
      - route:
        - destination:
            host: {{.Destination}}
            subset: my-subset
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: {{.Destination}}
    spec:
      host: {{.Destination}}
      subsets:
      - name: my-subset
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/kotlin/build.gradle.kts

    tasks.register("someTask") {
        val destination = System.getProperty("someDestination") // <1>
        inputs.dir("source")
        outputs.dir(destination)
        doLast {
            project.copy { // <2>
                from("source")
                into(destination)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 268 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceUploader.java

        }
    
        private class UploadOperation implements RunnableBuildOperation {
            private final ExternalResourceName destination;
            private final ReadableContent resource;
    
            public UploadOperation(ExternalResourceName destination, ReadableContent resource) {
                this.destination = destination;
                this.resource = resource;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bogus-productpage
      namespace: foo
    spec:
      hosts:
      - productpage # should generate an error as this conflicts with VirtualService foo/productpage
      http:
      - route:
        - destination:
            host: reviews
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/sds/writer_test.go

    				secretItemColumns...),
    			unexpected: []string{"source", "destination", "certdata"},
    		},
    		{
    			name:   "test JSON output with a single secret item",
    			format: JSON,
    			items: []SecretItem{
    				{
    					Name:        "olinger",
    					Data:        "certdata",
    					Source:      "source",
    					Destination: "destination",
    					SecretMeta: SecretMeta{
    						Valid:        true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/SimpleTestOutputEvent.groovy

     */
    
    package org.gradle.api.internal.tasks.testing.logging
    
    import org.gradle.api.tasks.testing.TestOutputEvent
    import org.gradle.api.tasks.testing.TestOutputEvent.Destination
    
    class SimpleTestOutputEvent implements TestOutputEvent {
        Destination destination = Destination.StdOut
        String message = "message to standard out"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 944 bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

        }
    
        public static void moveFile(File source, File destination) {
            try {
                FileUtils.moveFile(source, destination);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        public static void moveExistingFile(File source, File destination) {
            boolean rename = source.renameTo(destination);
            if (!rename) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/virtualservice_overlappingmatches.yaml

        - uri:
            prefix: "/api/v1/product"
          method:
            exact: GET
        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - name: "send products to sample.bar"
        match:
        - uri:
            prefix: "/api/v1/products"
          method:
            exact: GET
        route:
        - destination:
            host: sample.bar.svc.cluster.local
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts_with_exportto.yaml

      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: productpage
      namespace: bar
    spec:
      hosts:
      - '*.productpage' # should generate an error as this conflicts with VirtualService foo/productpage
      http:
      - route:
        - destination:
            host: productpage
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

            private final String name;
            private final File destination;
            private final boolean available;
    
            private ReportState(String name, File destination, boolean available) {
                this.name = name;
                this.destination = destination;
                this.available = available;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top