Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 983 for Destinations (0.18 sec)

  1. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

        void writeAllOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            doWrite(classId, 0, true, destination, writer)
        }
    
        void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            doWrite(classId, 0, false, destination, writer)
        }
    
        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.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/BinaryResultBackedTestResultsProvider.java

        public boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
            return false;
        }
    
        @Override
        public void writeAllOutput(final long classId, final TestOutputEvent.Destination destination, final Writer writer) {
            withReader(new Action<TestOutputStore.Reader>() {
                @Override
                public void execute(TestOutputStore.Reader reader) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProviderTest.groovy

            1 * provider1.writeTestOutput(12, 11, TestOutputEvent.Destination.StdOut, writer)
            1 * provider1.writeNonTestOutput(12, TestOutputEvent.Destination.StdOut, writer)
    
            when:
            provider.hasOutput(2, TestOutputEvent.Destination.StdOut)
            provider.writeAllOutput(2, TestOutputEvent.Destination.StdOut, writer)
    
            then:
            1 * provider2.hasOutput(12, TestOutputEvent.Destination.StdOut)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. internal/bucket/replication/replication_test.go

    			destBucket:            "destinationbucket",...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. hack/verify-publishing-bot.py

                raise Exception("go version must not be specified for master branch for destination %s" % rule["destination"])
    
            print(("processing : %s" % rule["destination"]))
            if rule["destination"] not in gomod_dependencies:
                raise Exception("missing go.mod for %s" % rule["destination"])
            processed_repos.append(rule["destination"])
            processed_deps = []
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/config/validation/virtualservice_test.go

    				Weight:      25,
    			}, {
    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      75,
    			}},
    		}, valid: true},
    		{name: "total weight > 100", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.baz.south"},
    				Weight:      55,
    			}, {
    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      50,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top