Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,233 for _ignored (0.12 sec)

  1. staging/src/k8s.io/api/scheduling/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.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/scheduling/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: Sun Jan 22 00:51:25 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/go/parser/resolver_test.go

    // file, and use labels must refer to an existing declaration label. It's OK
    // for a comment to denote both the declaration and use of a label (e.g.
    // '=@foo'). Leading and trailing whitespace is ignored. Any comment not
    // beginning with '=' or '@' is ignored.
    func TestResolution(t *testing.T) {
    	dir := filepath.Join("testdata", "resolution")
    	fis, err := os.ReadDir(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, fi := range fis {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/scheduling/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
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/imagepolicy/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: Sun Jan 22 00:51:25 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

                def files = objects.fileCollection()
                files.from(nested)
                files.finalizeValue()
                name = 'ignore-me'
                names.clear()
                nested.from('ignore-me')
    
                assert files.files as List == [file('a'), file('b'), file('c')]
            """
    
            expect:
            succeeds()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/PatternFilenameFilterTest.java

        FilenameFilter filter = new PatternFilenameFilter("a+");
        assertTrue(filter.accept(dir, "a"));
        assertTrue(filter.accept(dir, "aaaa"));
        assertFalse(filter.accept(dir, "b"));
    
        // Show that dir is ignored
        assertTrue(filter.accept(null, "a"));
      }
    
      public void testNulls() throws Exception {
        NullPointerTester tester = new NullPointerTester();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cgo_bad_directives.txt

    # Ignore _* files
    rm x.go
    ! go build .
    stderr 'no Go files'
    cp cgo_yy.go.txt _cgo_yy.go
    ! go build .
    stderr 'no Go files' #_* files are ignored...
    
    [compiler:gc] ! go build _cgo_yy.go # ... but if forced, the comment is rejected
    # Actually, today there is a separate issue that _ files named
    # on the command line are ignored. Once that is fixed,
    # we want to see the cgo_ldflag error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

            touch(new File(srcDir1, 'subdir/file2.txt'))
            touch(new File(srcDir1, 'subdir/ignored.txt'))
            File srcDir2 = new File(testDir, 'dir2')
            touch(new File(srcDir2, 'subdir2/file1.txt'))
            touch(new File(srcDir2, 'subdir2/file2.txt'))
            touch(new File(srcDir2, 'subdir2/ignored.txt'))
    
            when:
            set.srcDir 'dir1'
            set.srcDir 'dir2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/PatternFilenameFilterTest.java

        FilenameFilter filter = new PatternFilenameFilter("a+");
        assertTrue(filter.accept(dir, "a"));
        assertTrue(filter.accept(dir, "aaaa"));
        assertFalse(filter.accept(dir, "b"));
    
        // Show that dir is ignored
        assertTrue(filter.accept(null, "a"));
      }
    
      public void testNulls() throws Exception {
        NullPointerTester tester = new NullPointerTester();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top