Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,101 for ignoreMe (0.23 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

         *
         * <p>This method ignores tests defined in included builds.</p>
         *
         * @param testClasses The class names of the tests to be executed.
         * @return this
         * @since 2.6
         */
        TestLauncher withJvmTestClasses(String... testClasses);
    
    
        /**
         * <p>Adds tests to be executed declared by class name.</p>
         *
         * <p>This method ignores tests defined in included builds.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    				Int3:     3,
    				Ignored:  1,
    				Ignored2: "ignored",
    			},
    			expected: url.Values{"float1": {"23.5"}, "float2": {"100.7"}, "int1": {"1"}, "int2": {"2"}, "int3": {"3"}},
    		},
    		{
    			// include fields that are not tagged omitempty
    			input: &foo{
    				NamedStr: "named str",
    			},
    			expected: url.Values{"str": {""}, "namedStr": {"named str"}},
    		},
    		{
    			input: &baz{
    				Ptr:  intp(5),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SambaHelper.java

                } catch (final Exception e) {
                    // ignore
                }
            }
            final Integer id = fessConfig.getAvailableSmbSidType(type);
            if (id != null) {
                return createSearchRole(id, sid.getAccountName());
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Ignored SID: {} {}", type, sid);
            }
            return null;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * Ignoring a dependency does not mean lock state ignores its transitive dependencies.
    * There is no validation that an ignored dependency is present in any configuration resolution.
    * If the dependency is present in lock state, loading it will filter out the dependency.
    * If the dependency is present in the resolution result, it will be ignored when validating that resolution matches the lock state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/os/exec/exec_windows.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 ERROR_BROKEN_PIPE and ERROR_NO_DATA errors copying
    	// to stdin if the program completed successfully otherwise.
    	// See Issue 20445.
    	const _ERROR_NO_DATA = syscall.Errno(0xe8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 13:47:05 UTC 2022
    - 721 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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