Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 971 for designation (0.14 sec)

  1. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            given:
            JavaAppStartScriptGenerationDetails details = createScriptGenerationDetails(null, 'bin')
            Writer destination = new StringWriter()
    
            when:
            generator.generateScript(details, destination)
    
            then:
            destination.toString().contains("set CLASSPATH=%APP_HOME%\\path\\to\\Jar.jar")
        }
    
        def "windows script uses windows line separator"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/conditions.yaml.tmpl

            paths: [ "/destination-port-good" ]
        when:
        - key: destination.port
          values: [ "{{ ( .To.PortForName `http` ).WorkloadPort }}" ]
      - to:
        - operation:
            paths: [ "/destination-port-bad" ]
        when:
        - key: destination.port
          values: [ "1" ]
      - to:
          - operation:
              paths: [ "/destination-port-notValues" ]
        when:
          - key: destination.port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/virtualservice/destinationhosts.go

    // get all virtualservice that have destination with subset
    func initVirtualServiceDestinations(ctx analysis.Context) map[resource.FullName][]*v1alpha3.Destination {
    	virtualservices := make(map[resource.FullName][]*v1alpha3.Destination)
    
    	ctx.ForEach(gvk.VirtualService, func(r *resource.Instance) bool {
    		virtualservice := r.Message.(*v1alpha3.VirtualService)
    		for _, routes := range virtualservice.Http {
    			for _, destinations := range routes.Route {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/config/kube/ingress/testdata/simple.yaml.golden

        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4209
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4201
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:13:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    spec:
      exportTo:
        - "default"
      hosts:
      - "abc.bookinfo.com" # This ServiceEntry matches a destination host in a virtualService in another namespace
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
      namespace: default
    spec:
      http:
      - route:
        - destination:  # This virtualservice has no validation errors (base case)
            host: reviews
            subset: v1
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top