Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 587 for Replies (0.19 sec)

  1. pkg/apis/abac/v0/types.go

    type Policy struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// User is the username this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all users.
    	// +optional
    	User string `json:"user,omitempty"`
    
    	// Group is the group this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all groups.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 18 16:05:04 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    }
    ----
    
    Note that this plugin takes no action unless applied in concert with the <<jvm_test_suite_plugin#jvm_test_suite_plugin,JVM Test Suite Plugin>>.  The <<java_plugin#java_plugin, Java Plugin>> automatically applies the JVM Test Suite Plugin.
    
    There are now two ways to collect test results across multiple subprojects:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/software/ivy/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("SamplesIvyPublishIntegrationTest test applies the java-library plugin.")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("IvyPublishCrossVersionIntegrationTest test applies the war plugin.")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. pkg/dns/proto/nds.proto

            // The name of the service registry containing the service (e.g. 'Kubernetes').
            string registry = 2;
    
            // The k8s service name. Only applies when registry=`Kubernetes`
            string shortname = 3;
    
            // The k8s namespace for the service. Only applies when registry=`Kubernetes`
            string namespace = 4;
    
            // Deprecated. Was added for experimentation only.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 01 20:40:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. pkg/test/util/yml/apply.go

    	"fmt"
    	"reflect"
    
    	appsv1 "k8s.io/api/apps/v1"
    	"k8s.io/apimachinery/pkg/util/strategicpatch"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/tmpl"
    )
    
    // ApplyNamespace applies the given namespaces to the resources in the yamlText if not set.
    func ApplyNamespace(yamlText, ns string) (string, error) {
    	chunks := SplitString(yamlText)
    
    	toJoin := make([]string, 0, len(chunks))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

         *
         * @return the plugin container
         * @see #apply
         * @see PluginManager#hasPlugin(String)
         */
        PluginContainer getPlugins();
    
        /**
         * Applies zero or more plugins or scripts.
         * <p>
         * The given closure is used to configure an {@link ObjectConfigurationAction}, which “builds” the plugin application.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    }
    ----
    
    Note that this plugin takes no action unless applied in concert with the <<jvm_test_suite_plugin#jvm_test_suite_plugin,JVM Test Suite Plugin>>.  The <<java_plugin#java_plugin, Java Plugin>> automatically applies the JVM Test Suite Plugin.
    
    There are now two ways to collect code coverage results across multiple subprojects:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    )
    
    var (
    	markControlPlaneExample = cmdutil.Examples(`
    		# Applies control-plane label and taint to the current node, functionally equivalent to what executed by kubeadm init.
    		kubeadm init phase mark-control-plane --config config.yaml
    
    		# Applies control-plane label and taint to a specific node
    		kubeadm init phase mark-control-plane --node-name myNode
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentModuleMetadataHandler.java

     *         }
     *     }
     * }
     * </pre>
     *
     * @since 2.2
     */
    public interface ComponentModuleMetadataHandler {
        /**
         * Enables configuring component module metadata.
         * This metadata applies to the entire component module (e.g. "group:name", like "org.gradle:gradle-core") regardless of the component version.
         *
         * <pre class='autoTested'>
         * //declaring that google collections are replaced by guava
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    It applies the core `java` and `checkstyle` plugins as well as an external `com.github.spotbugs` plugin, configures common
    compiler options as well as code quality checks.
    * `myproject.library-conventions` - adds publishing configuration to publish to the organization's repository and checks for mandatory content in a README.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top