Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,101 for ignoreMe (0.14 sec)

  1. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/OrElseProvider.java

            try (EvaluationContext.ScopeContext ignored = openScope()) {
                return left.calculatePresence(consumer) || right.calculatePresence(consumer);
            }
        }
    
        @SuppressWarnings({"rawtypes", "unchecked"})
        @Override
        public ExecutionTimeValue<? extends T> calculateExecutionTimeValue() {
            try (EvaluationContext.ScopeContext ignored = openScope()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:42 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue18393.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that compiler directives are ignored if they
    // don't start at the beginning of the line.
    
    package p
    
    //line issue18393.go:20
    import 42 // error on line 20
    
    
    /* //line not at start of line: ignored */ //line issue18393.go:30
    var x     // error on line 24, not 30
    
    
    // ERROR "import path must be a string"
    
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:26:06 UTC 2020
    - 565 bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/collect/testing/MyTester.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    import org.junit.Ignore;
    
    /** Support class added to a suite as part of {@link FeatureSpecificTestSuiteBuilderTest}. */
    /*
     * @Ignore affects the Android test runner (and only the Android test runner): It respects JUnit 4
     * annotations even on JUnit 3 tests.
     *
     * TODO(b/225350400): Remove @Ignore, which doesn't seem like it should be necessary and probably
     * soon won't be.
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 14:48:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/v1beta1/defaults_test.go

    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	_ "k8s.io/kubernetes/pkg/apis/admissionregistration/install"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func TestDefaultAdmissionWebhook(t *testing.T) {
    	ignore := v1beta1.Ignore
    	exact := v1beta1.Exact
    	never := v1beta1.NeverReinvocationPolicy
    	thirty := int32(30)
    	allScopes := v1beta1.AllScopes
    	unknown := v1beta1.SideEffectClassUnknown
    
    	tests := []struct {
    		name     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/os/signal/signal.go

    			remove(signum(s))
    		}
    	}
    }
    
    // Ignore causes the provided signals to be ignored. If they are received by
    // the program, nothing will happen. Ignore undoes the effect of any prior
    // calls to [Notify] for the provided signals.
    // If no signals are provided, all incoming signals will be ignored.
    func Ignore(sig ...os.Signal) {
    	cancel(sig, ignoreSignal)
    }
    
    // Ignored reports whether sig is currently ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. pkg/registry/certificates/certificates/storage/metrics_test.go

    				},
    			},
    			options:       &metav1.UpdateOptions{},
    			wantSigner:    "kubernetes.io/educate-dolphins",
    			wantRequested: true,
    			wantHonored:   false,
    		},
    		{
    			name:    "failed update is ignored",
    			success: false,
    			obj: &certificates.CertificateSigningRequest{
    				Status: certificates.CertificateSigningRequestStatus{
    					Certificate: createCert(t, time.Hour, caPrivateKey, caCert),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

         * If this supplier already ignores absent results, returns this supplier.
         */
        CollectionSupplier<T, C> absentIgnoring();
    
        /**
         * Returns a view of this supplier that will calculate its value as empty if it would be missing,
         * if required. If not required, or this supplier already ignores absent results, returns this supplier.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top