- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 737 for Services (0.06 sec)
-
istioctl/pkg/writer/ztunnel/configdump/services.go
} // PrintServiceSummary prints a summary of the relevant services in the config dump to the ConfigWriter stdout func (c *ConfigWriter) PrintServiceSummary(filter ServiceFilter) error { w := c.tabwriter() zDump := c.ztunnelDump workloadsByUID := slices.GroupUnique(zDump.Workloads, func(t *ZtunnelWorkload) string { return t.UID }) svcs := slices.Filter(zDump.Services, filter.Verify)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 24 09:07:30 UTC 2024 - 3.2K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/tflite-in-play-services.md
name: TensorFlow Lite in Play Services issue about: Use this template for issues with TensorFlow Lite in Google Play Services labels: 'comp:lite-in-play-services' --- **System information** - Android Device information (use `adb shell getprop ro.build.fingerprint` if possible): - TensorFlow Lite in Play Services SDK version (found in `build.gradle`): - Google Play Services version (`Settings` > `Apps` > `Google Play Services` > `App details`):
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jun 15 03:35:58 UTC 2022 - 880 bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Service.java
import org.apache.maven.api.annotations.ThreadSafe; /** * Marker interface for all services provided by the {@link Session}. * <p> * Services can be retrieved from the session using the * {@link Session#getService(Class)} method. * * @since 4.0.0 * @see Session#getService(Class) */ @Experimental @ThreadSafe
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java
import org.apache.maven.api.Session; import org.apache.maven.api.services.BuilderProblem; import org.apache.maven.api.services.Source; import org.apache.maven.api.services.ToolchainsBuilderException; import org.apache.maven.api.services.ToolchainsBuilderRequest; import org.apache.maven.api.services.ToolchainsBuilderResult; import org.apache.maven.api.services.xml.ToolchainsXmlFactory; import org.apache.maven.building.FileSource;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProducedArtifact.java
* <li>{@linkplain org.apache.maven.api.services.ProjectManager#attachArtifact(Session, Project, Path) artifacts to be attached to a project}</li> * </ul> * * <p>For the main artifact and attached artifacts, the * {@link org.apache.maven.api.services.ArtifactManager ArtifactManager} service must be used * to point the artifact to a {@link Path} during the packaging phase.</p> *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
/** * Interface representing a Maven project which can be created using the * {@link org.apache.maven.api.services.ProjectBuilder ProjectBuilder} service. * Such objects are immutable and plugin that wish to modify such objects * need to do so using the {@link org.apache.maven.api.services.ProjectManager * ProjectManager} service. * <p> * Projects are created using the {@code ProjectBuilder} from a POM file
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0) -
architecture/standards/0005-introduce-core-ui-architecture-module.md
Introduce a "UI" architecture module to the core platform, and move the user interaction services to this new module. This includes: - Logging and progress services. - Problem generation services (aka the "problems API"). - User prompting services. - Build options infrastructure. - The console and CLI, as a specific implementation of these services.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Mar 04 23:19:15 UTC 2024 - 1.3K bytes - Viewed (0) -
manifests/addons/values-grafana.yaml
path: /var/lib/grafana/dashboards/istio - name: "istio-services" orgId: 1 folder: "istio" type: file disableDeletion: false options: path: /var/lib/grafana/dashboards/istio-services dashboardsConfigMaps: istio: "istio-grafana-dashboards" istio-services: "istio-services-grafana-dashboards"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 12 20:46:28 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilder.java
import java.util.stream.Collectors; import org.apache.maven.api.Session; import org.apache.maven.api.services.BuilderProblem; import org.apache.maven.api.services.SettingsBuilderException; import org.apache.maven.api.services.SettingsBuilderRequest; import org.apache.maven.api.services.SettingsBuilderResult; import org.apache.maven.api.services.xml.SettingsXmlFactory; import org.apache.maven.building.FileSource; import org.apache.maven.building.Source;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.3K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/workload.go
func serviceWaypointName(svc *ZtunnelService, services []*ZtunnelService) string { if svc.Waypoint == nil { return "None" } for _, service := range services { if fmt.Sprintf("%s/%s", service.Namespace, service.Hostname) == svc.Waypoint.Destination { return service.Name } for _, addr := range service.Addresses { if addr == svc.Waypoint.Destination { return service.Name } } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 24 09:07:30 UTC 2024 - 4.2K bytes - Viewed (0)