Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for getDestination (0.18 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestOutputEvent.java

    /**
     * Standard output or standard error message logged during the execution of the test
     */
    public interface TestOutputEvent {
    
        /**
         * Destination of the message
         */
        Destination getDestination();
    
        /**
         * Message content
         */
        String getMessage();
    
        /**
         * Destination of the message
         */
        enum Destination {
            StdOut, StdErr
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestOutputEvent.java

        public DefaultTestOutputEvent(Destination destination, String message) {
            this.destination = destination;
            this.message = message;
        }
    
        @Override
        public Destination getDestination() {
            return destination;
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. internal/bucket/replication/replication.go

    		return rules[i].Priority > rules[j].Priority && rules[i].Destination.String() == rules[j].Destination.String()
    	})
    
    	return rules
    }
    
    // GetDestination returns destination bucket and storage class.
    func (c Config) GetDestination() Destination {
    	if len(c.Rules) > 0 {
    		return c.Rules[0].Destination
    	}
    	return Destination{}
    }
    
    // Replicate returns true if the object should be replicated.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    		}
    
    		for _, mirror := range httpRoute.GetMirrors() {
    			if mirror.GetDestination() != nil {
    				addService(host.Name(mirror.GetDestination().GetHost()))
    			}
    		}
    
    		for _, route := range httpRoute.GetRoute() {
    			if route.GetDestination() != nil {
    				addService(host.Name(route.GetDestination().GetHost()))
    			}
    		}
    	}
    
    	return nameToServiceMap
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                onOutput(classId, 0, outputEvent);
            }
    
            public void onOutput(long classId, long testId, TestOutputEvent outputEvent) {
                boolean stdout = outputEvent.getDestination() == TestOutputEvent.Destination.StdOut;
                mark(classId, testId, stdout);
    
                output.writeBoolean(stdout);
                output.writeSmallLong(classId);
                output.writeSmallLong(testId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

            }
    
            @Override
            public void write(Encoder encoder, DefaultTestOutputEvent value) throws Exception {
                destinationSerializer.write(encoder, value.getDestination());
                encoder.writeString(value.getMessage());
            }
        }
    
        private static class DefaultTestFailureSerializer implements Serializer<DefaultTestFailure> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    	listenerPort int,
    	hashByDestination DestinationHashMap,
    	out *route.Route,
    	action *route.RouteAction,
    ) host.Name {
    	hostname := host.Name(dst.GetDestination().GetHost())
    	action.ClusterSpecifier = &route.RouteAction_Cluster{
    		Cluster: GetDestinationCluster(dst.Destination, serviceRegistry[hostname], listenerPort),
    	}
    	if dst.Headers != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	return file_workloadapi_workload_proto_rawDescGZIP(), []int{8}
    }
    
    func (m *GatewayAddress) GetDestination() isGatewayAddress_Destination {
    	if m != nil {
    		return m.Destination
    	}
    	return nil
    }
    
    func (x *GatewayAddress) GetHostname() *NamespacedHostname {
    	if x, ok := x.GetDestination().(*GatewayAddress_Hostname); ok {
    		return x.Hostname
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    			if len(in.Route) == 1 {
    				weight.Value = uint32(100)
    			} else {
    				continue
    			}
    		}
    		hostname := host.Name(dst.GetDestination().GetHost())
    		n := lb.GetDestinationCluster(dst.Destination, lb.serviceForHostname(hostname), listenerPort)
    		clusterWeight := &route.WeightedCluster_ClusterWeight{
    			Name:   n,
    			Weight: weight,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.publish.ivy.tasks.GenerateIvyDescriptor.getDestination()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateIvyDescriptor.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top