Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,233 for _ignored (0.14 sec)

  1. src/cmd/go/testdata/script/generate_invalid.txt

    Go generate should ignore this directory.
    //go:generate echo Fail nogo
    
    -- excluded/a.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    // +build a
    
    //go:generate echo Fail a
    
    package excluded
    
    -- excluded/b.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    //go:generate echo Fail b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/config/crd/validator.go

    	}
    	return false
    }
    
    func (v *Validator) ValidateCustomResourceYAML(data string, ignorer *ValidationIgnorer) error {
    	var errs *multierror.Error
    	for _, item := range yml.SplitString(data) {
    		obj := &unstructured.Unstructured{}
    		if err := yaml.Unmarshal([]byte(item), obj); err != nil {
    			return err
    		}
    		if ignorer != nil && ignorer.ShouldIgnore(obj.GetNamespace(), obj.GetName()) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. .gitignore

    # Vagrant
    .vagrant
    network_closure.sh
    
    # Local cluster env variables
    /cluster/env.sh
    
    # Compiled binaries in third_party
    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/VerificationTask.java

         * @param ignoreFailures false to break the build on failure, true to ignore the failures. The default is false.
         */
        void setIgnoreFailures(boolean ignoreFailures);
    
        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
         * @return false, when the build should break on failure, true when the failures should be ignored.
         */
        @Input
        boolean getIgnoreFailures();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata.
      - On artifact foo-1.0.pom (org:foo:1.0) multiple problems reported:
          - in repository 'maven': artifact was signed but all keys were ignored
          - in repository 'maven': checksum is missing from verification metadata."""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.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. tests/integration/security/fuzz/fuzz_test.go

    	}
    	t.Logf("service %s is ready", name)
    }
    
    func ignoreTomcat(t framework.TestContext, line string, ignores []string) bool {
    	for _, ignore := range ignores {
    		if strings.Contains(line, ignore) {
    			t.Logf("ignored known unsupported normalization: %s", ignore)
    			return true
    		}
    	}
    	return false
    }
    
    func runFuzzer(t framework.TestContext, fuzzer, ns, server string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/coordination/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 Jan 22 00:51:25 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/coordination/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: Sun Jan 22 00:51:25 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

                    }
                    testcase("ignored") {
                        duration = 1000;
                        ignore()
                    }
                }
                testClassResult("org.gradle.failing.SomeIgnoredSomePassedSomeFailed") {
                    testcase("passed") {
                        duration = 1000;
                    }
                    testcase("ignored") {
                        duration = 1000;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top