Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 828 for regular (0.21 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    //   bool KilledBySIGHUP(int exit_code) {
    //     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
    //   which uses the POSIX extended regex syntax.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         */
        default void visitIdentityInputs(InputVisitor visitor) {}
    
        /**
         * Visit regular inputs of the work.
         *
         * Regular inputs are inputs that are not used to calculate the identity of the work, but used to check up-to-dateness or to calculate the cache key.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * Allows extending Kotlin resolution by generating additional declarations.
     *
     * Those declarations will be analyzed the same way as they were just regular source files inside the project.
     *
     * All member implementations should consider caching the results for subsequent invocations.
     */
    public abstract class KaResolveExtensionProvider {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/internal/profile/filter.go

    package profile
    
    // TagMatch selects tags for filtering
    type TagMatch func(key, val string, nval int64) bool
    
    // FilterSamplesByTag removes all samples from the profile, except
    // those that match focus and do not match the ignore regular
    // expression.
    func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    		focused, ignored := focusedSample(s, focus, ignore)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/error_test.go

    // Error comments must be of the form // ERROR rx or /* ERROR rx */
    // where rx is a regular expression that matches the reported error
    // message. The rx text comprises the comment text after "ERROR ",
    // with any white space around it stripped.
    //
    // If the line comment form is used, the reported error's line must
    // match the line of the error comment.
    //
    // If the regular comment form is used, the reported error's position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Therefore, you may face situations where you want to substitute a platform dependency with a regular dependency, or the other way around.
    
    [[sec:substitution_with_attributes]]
    ==== Substituting a dependency with attributes
    
    Let's imagine that you want to substitute a platform dependency with a regular dependency.
    This means that the library you are consuming declared something like this:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. src/net/netip/slow_test.go

    // and against which we measure optimized parsers.
    //
    // parseIPSlow understands the following forms of IP addresses:
    //   - Regular IPv4: 1.2.3.4
    //   - IPv4 with many leading zeros: 0000001.0000002.0000003.0000004
    //   - Regular IPv6: 1111:2222:3333:4444:5555:6666:7777:8888
    //   - IPv6 with many leading zeros: 00000001:0000002:0000003:0000004:0000005:0000006:0000007:0000008
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. internal/ringbuffer/README.md

    ```go
    	rb := ringbuffer.New(1024).SetBlocking(true)
    ```
    
    Enabling blocking will cause the ring buffer to behave like a buffered [io.Pipe](https://pkg.go.dev/io#Pipe).
    
    Regular Reads will block until data is available, but not wait for a full buffer. 
    Writes will block until there is space available and writes bigger than the buffer will wait for reads to make space.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

                artifactId == 'artifact-<tag attrib="value"/>-markup'
                version == 'version-&"'
            }
    
            where:
            marker << [false, true]
        }
    
        def "writes regular dependency"() {
            def dependency = new DefaultMavenDependency("dep-group", "dep-name", "dep-version", null, null, "runtime", [] as Set, false)
            pom.getDependencies().set(pomDependencies(dependency))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    				{`//foo.com`},
    				{`foo.com$`},
    				{`foo.com(:|$)`},
    			},
    			errShouldContain: "regular expression does not pin to start/end of host in the origin header",
    		},
    		{
    			regexp: [][]string{
    				{`^http://foo.com$`, `^foo.com`}, // one good followed by a bad one
    			},
    			errShouldContain: "regular expression does not pin to start/end of host in the origin header",
    		},
    	}
    
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top