Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,101 for ignoreMe (0.15 sec)

  1. src/net/http/request.go

    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores Form and uses Body instead.
    	Form url.Values
    
    	// PostForm contains the parsed form data from PATCH, POST
    	// or PUT body parameters.
    	//
    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores PostForm and uses Body instead.
    	PostForm url.Values
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

            true              | false
            false             | true
            false             | false
        }
    
        def "task gets rerun after cancellation when buildcache = #buildCacheEnabled and exceptions ignored = #ignored"() {
            given:
            file('outputFile') << ''
            blockCode()
            buildFile << """
                apply plugin: 'java'
    
                @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileTreeIntegrationTest.groovy

            file('files/a/two.txt').createFile()
            file('files/b/ignore.txt').createFile()
            file('other/other-one.txt').createFile()
            file('other/a/other-ignore.txt').createFile()
            buildFile """
                def files = fileTree(dir: 'files').plus(fileTree(dir: 'other')).filter {
                    println("checking \${it.name}")
                    !it.name.contains('ignore')
                }
                task copy(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/vendor.go

    	// have different names for GOOS=windows and GOOS=mac for example. On the
    	// other hand if there's a NoGoError, the package might have source files
    	// specifying "//go:build ignore" those packages should be skipped because
    	// embeds from ignored files can't be used.
    	// TODO(#42504): Find a better way to avoid errors from ImportDir. We'll
    	// need to figure this out when we switch to PackagesAndErrors as per the
    	// TODO above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. cmd/utils_test.go

    func TestIsErrIgnored(t *testing.T) {
    	errIgnored := fmt.Errorf("ignored error")
    	testCases := []struct {
    		err     error
    		ignored bool
    	}{
    		{
    			err:     nil,
    			ignored: false,
    		},
    		{
    			err:     errIgnored,
    			ignored: true,
    		},
    		{
    			err:     errFaultyDisk,
    			ignored: true,
    		},
    	}
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. schema/schema_test.go

    		{Name: "Name", DBName: "company_name", BindNames: []string{"Base", "Name"}, DataType: schema.String, TagSettings: map[string]string{"EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    		{Name: "Ignored", BindNames: []string{"Base", "Ignored"}, TagSettings: map[string]string{"-": "-", "EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/normalization/PropertiesFileNormalization.java

        /**
         * Specifies that the value of a certain property should be ignored when normalizing properties files.  {@code propertyName} is matched case-sensitively with the property key.
         * This method can be called multiple times to declare additional properties to be ignored.
         * @param propertyName - the name of the property to ignore
         */
        void ignoreProperty(String propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    // If a call fails (returns false), unification fails.
    //
    // In the unification context, structural equivalence of two types
    // ignores the difference between a defined type and its underlying
    // type if one type is a defined type and the other one is not.
    // It also ignores the difference between an (external, unbound)
    // type parameter and its core type.
    // If two types are not structurally equivalent, they cannot be Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        phaseHasMoreProgress(startEvent);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_PROJECT && currentPhase == Phase.Configuring) {
                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/CompositeTestResultsTest.groovy

            results.formattedSuccessRate == '0%'
        }
    
        def formatsSuccessRateWhenAllTestsAreIgnored() {
            results.addTest(test())
            results.addTest(test())
            results.ignored(test());
            results.ignored(test());
    
            expect:
            results.successRate == null
            results.formattedSuccessRate == '-'
        }
    
        def formatsDurationWhenNoTests() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top