Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 971 for designation (0.23 sec)

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

            withReader(new Action<TestOutputStore.Reader>() {
                @Override
                public void execute(TestOutputStore.Reader reader) {
                    reader.writeNonTestOutput(classId, destination, writer);
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

      http:
      - fault:
          delay:
            fixedDelay: 5s
            percentage:
              value: 100
        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - mirror:
          host: sample.bar.svc.cluster.local
        route:
        - destination:
            host: sample.bar.svc.cluster.local
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/UnixStartScriptGeneratorTest.groovy

            Writer destination = new StringWriter()
    
            when:
            generator.generateScript(details, destination)
    
            then:
            !destination.toString().contains(TextUtil.windowsLineSeparator)
            destination.toString().contains(TextUtil.unixLineSeparator)
        }
    
        def "defaultJvmOpts is expanded properly in unix script"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultTestOutputOperationDescriptor.java

            super(internalDescriptor, parent);
            this.destination = destination;
            this.message = message;
        }
    
        @Override
        public Destination getDestination() {
            return destination;
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top