Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,257 for _ignored (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * from levels lower than the specified granularity will be ignored.
         * <p>The default granularity is -1, which specifies that test events from only the most granular level should be logged.  In other words, if a test method is not parameterized, only events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/patches/patches.go

    		return nil, err
    	}
    
    	if len(patchFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Found the following patch files: %v\n", patchFiles)
    	}
    	if len(ignoredFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Ignored the following files: %v\n", ignoredFiles)
    	}
    
    	pm := &PatchManager{
    		patchSets:    patchSets,
    		knownTargets: knownTargets,
    		output:       output,
    	}
    	pathLock.Lock()
    	pathCache[path] = pm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

             <artifact name="foo-1.0.jar">
                <ignored-keys>
                   <ignored-key id="ABCdef"/>
                </ignored-keys>
             </artifact>
             <artifact name="foo-1.0.pom">
                <ignored-keys>
                   <ignored-key id="123"/>
                   <ignored-key id="456" reason="bad things happen"/>
                </ignored-keys>
             </artifact>
          </component>
       </components>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. src/text/tabwriter/tabwriter.go

    //                    |<- width ->|<- ignored ->|  |
    //                    |           |             |  |
    // [---processed---tab------------<tag>...</tag>...]
    // ^                  ^                         ^
    // |                  |                         |
    // buf                start of incomplete cell  pos
    
    // Formatting can be controlled with these flags.
    const (
    	// Ignore html tags and treat entities (starting with '&'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top