Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,170 for _ignored (0.13 sec)

  1. staging/src/k8s.io/api/authentication/v1alpha1/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 Mar 08 23:42:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/os/exec/exec_plan9.go

    package exec
    
    import "io/fs"
    
    // skipStdinCopyError optionally specifies a function which reports
    // whether the provided stdin copy error should be ignored.
    func skipStdinCopyError(err error) bool {
    	// Ignore hungup errors copying to stdin if the program
    	// completed successfully otherwise.
    	// See Issue 35753.
    	pe, ok := err.(*fs.PathError)
    	return ok &&
    		pe.Op == "write" && pe.Path == "|1" &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 13:47:05 UTC 2022
    - 608 bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProviderTest.groovy

        }
    
        @Ignore
        @RunWith(CustomRunner.class)
        static class RunWithSpec {
            void doTest() {}
        }
    
        @Ignore
        @RunWith()
        static class EmptyRunWithSpec {
            void doTest() {}
        }
    
        @Ignore
        @RunWith(MissingConstructorRunner.class)
        static class MissingConstructorRunWithSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/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
    - 1.6K bytes
    - Viewed (0)
  5. src/os/exec/exec_unix.go

    package exec
    
    import (
    	"io/fs"
    	"syscall"
    )
    
    // skipStdinCopyError optionally specifies a function which reports
    // whether the provided stdin copy error should be ignored.
    func skipStdinCopyError(err error) bool {
    	// Ignore EPIPE errors copying to stdin if the program
    	// completed successfully otherwise.
    	// See Issue 9173.
    	pe, ok := err.(*fs.PathError)
    	return ok &&
    		pe.Op == "write" && pe.Path == "|1" &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 13:47:05 UTC 2022
    - 635 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/gopath_local.txt

    [short] skip
    
    # Imports should be resolved relative to the source file.
    go build testdata/local/easy.go
    exec ./easy$GOEXE
    stdout '^easysub\.Hello'
    
    # Ignored files should be able to import the package built from
    # non-ignored files in the same directory.
    go build -o easysub$GOEXE testdata/local/easysub/main.go
    exec ./easysub$GOEXE
    stdout '^easysub\.Hello'
    
    # Files in relative-imported packages should be able to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

        }
    
        def 'ignores visited node that is to be ignored'() {
            given:
            def identifier = newId(mid, '1.1')
            def ignoredIdentifier = newId(DefaultModuleIdentifier.newId('org', 'ignored'), '1.0')
            startWithState([identifier], LockEntryFilterFactory.forParameter(['org:ignored'], "Update lock", true))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/go/testdata/script/test_import_error_stack.txt

    -- testdep/p1/p1.go --
    package p1
    -- testdep/p1/p1_test.go --
    package p1
    
    import _ "testdep/p2"
    -- testdep/p2/p2.go --
    package p2
    
    import _ "testdep/p3"
    -- testdep/p3/p3.go --
    // +build ignore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 997 bytes
    - Viewed (0)
Back to top