Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,141 for _ignored (0.36 sec)

  1. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

            BuildableTestMethodResult testcase(long id, String name, @DelegatesTo(value = BuildableTestMethodResult, strategy = Closure.DELEGATE_FIRST) Closure configClosure = {}) {
                def duration = methodCounter.compute(name) { ignored, value ->  value == null ? 1 : value + 1 } * 1000
                BuildableTestMethodResult methodResult = new BuildableTestMethodResult(id, name, outputEvents, new SimpleTestResult(duration))
                add(methodResult)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/IoActions.java

        public static void closeQuietly(@Nullable Closeable resource) {
            try {
                if (resource != null) {
                    resource.close();
                }
            } catch (IOException e) {
                // Ignored
            }
        }
    
        private static class TextFileWriterIoAction implements Action<Action<? super BufferedWriter>> {
            private final File file;
            private final String encoding;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    	var check checker
    	check.init(pass)
    	defer check.finish()
    
    	for _, group := range f.Comments {
    		// A +build comment is ignored after or adjoining the package declaration.
    		if group.End()+1 >= f.Package {
    			check.plusBuildOK = false
    		}
    		// A //go:build comment is ignored after the package declaration
    		// (but adjoining it is OK, in contrast to +build comments).
    		if group.Pos() >= f.Package {
    			check.goBuildOK = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/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: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt

    proxy3     cluster3     NOT SENT     ERROR       STALE       NOT SENT     NOT SENT     istiod3     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 522 bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/goflags.go

    	IsBoolFlag() bool
    }
    
    // SetFromGOFLAGS sets the flags in the given flag set using settings in $GOFLAGS.
    func SetFromGOFLAGS(flags *flag.FlagSet) {
    	InitGOFLAGS()
    
    	// This loop is similar to flag.Parse except that it ignores
    	// unknown flags found in goflags, so that setting, say, GOFLAGS=-ldflags=-w
    	// does not break commands that don't have a -ldflags.
    	// It also adjusts the output to be clear that the reported problem is from $GOFLAGS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.0.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key"/>
            </xs:sequence>
        </xs:complexType>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/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: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/resources/org/gradle/schema/dependency-verification-1.2.xsd

            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ignored-keyType">
            <xs:attribute type="xs:string" name="id" use="required"/>
            <xs:attribute type="xs:string" name="reason"/>
        </xs:complexType>
        <xs:complexType name="ignored-keysType">
            <xs:sequence>
                <xs:element type="ignored-keyType" name="ignored-key"/>
            </xs:sequence>
        </xs:complexType>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleDistributionTool.java

        private final GradleDistribution distribution;
        private final String ignored;
    
        public GradleDistributionTool(GradleDistribution distribution) {
            this(distribution, null);
        }
    
        public GradleDistributionTool(GradleDistribution distribution, String ignored) {
            this.distribution = distribution;
            this.ignored = ignored;
        }
    
        @Override
        public boolean matches(String criteria) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top