Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,257 for _ignored (0.14 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	KubeletExtraArgs []Arg
    
    	// IgnorePreflightErrors provides a slice of pre-flight errors to be ignored when the current node is registered, e.g. 'IsPrivilegedUser,Swap'.
    	// Value 'all' ignores errors from all checks.
    	IgnorePreflightErrors []string
    
    	// ImagePullPolicy specifies the policy for image pulling during kubeadm "init" and "join" operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

        }
    
        def "ignores system include file that does not exist"() {
            expect:
            def result = resolve(include('<test.h>'))
            result.complete
            result.files.empty
        }
    
        def "ignores quoted include file that does not exist"() {
            expect:
            def result = resolve(include('"test.h"'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                    task jar {}
                }
    
                project(':b') {
                    dependencies {
                        compile project(':a')
                    }
                    task jar {} // ignored
                }
            """
    
            when:
            succeeds ':b:checkDeps'
    
            then:
            result.assertTasksExecuted(":a:jar", ":b:checkDeps")
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	KubeletExtraArgs []Arg `json:"kubeletExtraArgs,omitempty"`
    
    	// IgnorePreflightErrors provides a slice of pre-flight errors to be ignored when the current node is registered, e.g. 'IsPrivilegedUser,Swap'.
    	// Value 'all' ignores errors from all checks.
    	// +optional
    	IgnorePreflightErrors []string `json:"ignorePreflightErrors,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/NullPointerTester.java

        return this;
      }
    
      /**
       * Ignore {@code method} in the tests that follow. Returns this object.
       *
       * @since 13.0
       */
      @CanIgnoreReturnValue
      public NullPointerTester ignore(Method method) {
        ignoredMembers.add(checkNotNull(method));
        return this;
      }
    
      /**
       * Ignore {@code constructor} in the tests that follow. Returns this object.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        return this;
      }
    
      /**
       * Ignore {@code method} in the tests that follow. Returns this object.
       *
       * @since 13.0
       */
      @CanIgnoreReturnValue
      public NullPointerTester ignore(Method method) {
        ignoredMembers.add(checkNotNull(method));
        return this;
      }
    
      /**
       * Ignore {@code constructor} in the tests that follow. Returns this object.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

        def "compile with release property set"() {
            given:
            goodCode()
            buildFile << """
                java.targetCompatibility = JavaVersion.VERSION_1_7 // Ignored
                compileJava.targetCompatibility = '10' // Ignored
                compileJava {
                    options.release.set(11)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

                #include HEADER(IGNORE, HEADER_(IGNORE()), IGNORE)
            """
    
            expect:
            resolve() == [header]
        }
    
        def "resolves macro function with arg that returns macro function call with no args"() {
            given:
            sourceFile << """
                #define HEADER_() "hello.h"
                #define HEADER(X) HEADER_()
                #include HEADER(ignore)
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      //   3. If any matchCondition evaluates to an error (but none are FALSE):
      //      - If failurePolicy=Fail, reject the request
      //      - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
      //
      // This is an alpha feature and managed by the AdmissionWebhookMatchConditions feature gate.
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    				recover()
    			}()
    			defer utilruntime.HandleCrash(
    				func(r interface{}) {
    					if r == nil {
    						return
    					}
    					if ignoreClientCallFailures {
    						// if failures are supposed to ignored, ignore it
    						klog.Warningf("Panic calling webhook, failing open %v: %v", hookName, r)
    						admissionmetrics.Metrics.ObserveWebhookFailOpen(ctx, hookName, "validating")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top