Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 587 for Replies (2.62 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/context.go

    // captured and the evaluated policy that applies to the given request.
    const auditKey key = iota
    
    // AuditContext holds the information for constructing the audit events for the current request.
    type AuditContext struct {
    	// RequestAuditConfig is the audit configuration that applies to the request
    	RequestAuditConfig RequestAuditConfig
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/testdata/sample.go

    // "/* ERROR " or "// ERROR ".
    //
    /*ERROR*/
    /*ERROR foo*/
    /* ERRORfoo */
    /*  ERROR foo */
    //ERROR
    // ERROR
    // ERRORfoo
    //  ERROR foo
    
    // This is a valid error comment; it applies to the
    // immediately following token. 
    import "math" /* ERROR unexpected comma */ ,
    
    // If there are multiple /*-style error comments before
    // the next token, only the last one is considered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 951 bytes
    - Viewed (0)
  3. platforms/jvm/distributions-jvm/build.gradle.kts

        pluginsRuntimeOnly(project(":java-platform")) {
            because("Aspirationally, we likely need a platform-base plugin that would ship in the same distribution as dependency-management, and isn't java specific - unfortunately this plugin applies the JvmEcosystemPlugin.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/instance/ModelElementState.java

    import groovy.lang.Closure;
    import org.gradle.model.internal.core.MutableModelNode;
    
    public interface ModelElementState extends GeneratedViewState {
        MutableModelNode getBackingNode();
    
        /**
         * Applies the given action to the value of the given property.
         */
        void apply(String name, Closure<?> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 992 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ListenerFailedException.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    import java.util.List;
    
    /**
     * Thrown whenever a listener fails with an exception, which in general implies that
     * the build completed like it should, but that one of the listeners failed with an
     * exception.
     *
     * @since 2.5
     */
    public class ListenerFailedException extends GradleConnectionException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults.go

    	defaultCacheSize  int32 = 1000
    	defaultAPIVersion       = "v1"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_KMSConfiguration applies defaults to KMSConfiguration.
    func SetDefaults_KMSConfiguration(obj *KMSConfiguration) {
    	if obj.Timeout == nil {
    		obj.Timeout = defaultTimeout
    	}
    
    	if obj.APIVersion == "" {
    		obj.APIVersion = defaultAPIVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

        /**
         * Returns the Eclipse natures configured on the project.
         * <p>
         * Some natures are automatically added to the result based on the Gradle plugins applied on the project.
         * For example, if the project applies the 'java' plugin the result will contain the
         * {@code "org.eclipse.jdt.core.javanature"} entry. Note, that the exact list of automatically added
         * natures is not part of the API and can vary between Gradle releases.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. releasenotes/notes/44152.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 29394
    releaseNotes:
      - |
        **Removed** operator skip reconcile for iop resources with names starting with `installed-state`. It now relies solely on the annotation `install.istio.io/ignoreReconcile`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 31 14:28:49 UTC 2023
    - 334 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/register.go

    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&InitConfiguration{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Plugin.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api;
    
    /**
     * <p>A <code>Plugin</code> represents an extension to Gradle. A plugin applies some configuration to a target object.
     * Usually, this target object is a {@link org.gradle.api.Project}, but plugins can be applied to any type of
     * objects.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
Back to top