Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,770 for _ignored (0.26 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    				return nil, nil
    			}
    			checkGoFile(pass, f)
    		} else {
    			if err := checkOtherFile(pass, name); err != nil {
    				return nil, err
    			}
    		}
    	}
    	return nil, nil
    }
    
    func checkGoFile(pass *analysis.Pass, f *ast.File) {
    	pastCutoff := false
    	for _, group := range f.Comments {
    		// A +build comment is ignored after or adjoining the package declaration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

            "tarTree" | "tgzTo"  | "source.tgz"  | false
            "tarTree" | "tbzTo"  | "source.tbz2" | true
            "tarTree" | "tbzTo"  | "source.tbz2" | false
        }
    
        @Ignore("inputs from resources are ignored")
        def "using compressed files as inputs from resources - #source"() {
            given:
            def packDir = file("pack").createDir()
            def outputDir = file("unpack")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. cmd/os_windows.go

    				// It got deleted in the meantime, not found
    				// or returns too many symlinks ignore this
    				// file/directory.
    				if osIsNotExist(err) || isSysErrPathNotFound(err) ||
    					isSysErrTooManySymlinks(err) {
    					continue
    				}
    				return nil, err
    			}
    
    			if !opts.followDirSymlink && fi.IsDir() {
    				// directory symlinks are ignored.
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/UnionResourceEntryFilter.java

    package org.gradle.api.internal.changedetection.state;
    
    import org.gradle.internal.hash.Hasher;
    
    import java.util.Collection;
    
    /**
     * This represents a composite resource entry filter which ignores the entry if any of the filters would ignore the entry.
     */
    public class UnionResourceEntryFilter implements ResourceEntryFilter {
        private final Collection<ResourceEntryFilter> filters;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

            // that. If any of the BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS ended in "'GMT'" we'd have
            // to also check that position.getIndex() == value.length() otherwise parsing might have
            // terminated early, ignoring things like "+01:00". Leaving this as != 0 means that any
            // trailing junk is ignored.
            return result
          }
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.dot

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyDescriptor.java

        }
    
        /**
         * When an optional dependency declares a classifier, that classifier is effectively ignored, and the optional
         * dependency will update the version of any dependency with matching GAV.
         * (Same goes for <type> on optional dependencies: they are effectively ignored).
         *
         * Note that this doesn't really match with Maven, where an optional dependency with classifier will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            def symlink = tmpDir.createFile("dir1/cc")
            def file = tmpDir.createFile("dir2/cc.bin")
            def ignored = tmpDir.createFile("dir3/cc.bin")
    
            given:
            symlink.setText("!<symlink>../dir2/cc.bin\u0000", "utf-8")
            os.getExecutableName("cc") >> "cc.bin"
            os.path >> [symlink.parentFile, ignored.parentFile]
            os.windows >> true
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/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: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    
    // FailurePolicyType specifies the type of failure policy
    type FailurePolicyType string
    
    const (
    	// Ignore means that an error calling the webhook is ignored.
    	Ignore FailurePolicyType = "Ignore"
    	// Fail means that an error calling the webhook causes the admission to fail.
    	Fail FailurePolicyType = "Fail"
    )
    
    // MatchPolicyType specifies the type of match policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top