Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,524 for _ignored (0.21 sec)

  1. 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)
  2. src/strconv/atof.go

    import "math"
    
    var optimize = true // set to false to force slow-path conversions for testing
    
    // commonPrefixLenIgnoreCase returns the length of the common
    // prefix of s and prefix, with the character case of s ignored.
    // The prefix argument must be all lower-case.
    func commonPrefixLenIgnoreCase(s, prefix string) int {
    	n := len(prefix)
    	if n > len(s) {
    		n = len(s)
    	}
    	for i := 0; i < n; i++ {
    		c := s[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        }
    
        // instance method ignored
        public Object badIgnored() {
          return new BadEquals();
        }
    
        // primitive ignored
        public int returnsInt() {
          throw new UnsupportedOperationException();
        }
    
        // void ignored
        public void voidMethod() {
          throw new UnsupportedOperationException();
        }
    
        // non-public method ignored
        static Object badButNotPublic() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

                        module("org:external:1.0")
                    }
                }
            }
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "resolution result ignores an ignored available-at variant"() {
            given:
            repository {
                'org:moduleA:1.0' {
                    variants(["api", "runtime"]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/go/token/position.go

    	f.mutex.Unlock()
    	return n
    }
    
    // AddLine adds the line offset for a new line.
    // The line offset must be larger than the offset for the previous line
    // and smaller than the file size; otherwise the line offset is ignored.
    func (f *File) AddLine(offset int) {
    	f.mutex.Lock()
    	if i := len(f.lines); (i == 0 || f.lines[i-1] < offset) && offset < f.size {
    		f.lines = append(f.lines, offset)
    	}
    	f.mutex.Unlock()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

            given:
            buildFile << """
    
    def prop = project.objects.fileProperty()
    
    task thing {
        ${registrationMethod}(prop)
        prop.set(file("file-1"))
        def other = file("ignored")
        doLast {
            prop.set(other)
            println "prop = " + prop.get()
        }
    }
    """
            file("file-1").createFile()
    
            when:
            fails("thing")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker.go

    func getLastChangeTriggerTime(annotations map[string]string) time.Time {
    	// TODO(#81360): ignore case when Endpoint is deleted.
    	if _, ok := annotations[v1.EndpointsLastChangeTriggerTime]; !ok {
    		// It's possible that the Endpoints object won't have the
    		// EndpointsLastChangeTriggerTime annotation set. In that case return
    		// the 'zero value', which is ignored in the upstream code.
    		return time.Time{}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsIntegrationTest.groovy

       Dependency path ':test:unspecified' --> 'org:a:1.0' (runtime) --> 'org:b:1.0' (runtime) --> 'org:c:2.0'"""
        }
    
        def "strict from selected and later evicted modules are ignored"() {
            given:
            repository {
                'org:a:1.0' {
                    dependsOn(group: 'org', artifact: 'b', version: '1.0')
                    dependsOn(group: 'org', artifact: 'c', strictly: '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top