Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 912 for regular (0.27 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/options.go

    func (ui *stdUI) fprint(f *os.File, args []interface{}) {
    	text := fmt.Sprint(args...)
    	if !strings.HasSuffix(text, "\n") {
    		text += "\n"
    	}
    	f.WriteString(text)
    }
    
    // oswriter implements the Writer interface using a regular file.
    type oswriter struct{}
    
    func (oswriter) Open(name string) (io.WriteCloser, error) {
    	f, err := os.Create(name)
    	return f, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 07 12:27:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  4. hack/logcheck.conf

    # hack/logcheck.conf contains regular expressions that are matched against <pkg>/<file>,
    # for example k8s.io/cmd/kube-scheduler/app/config/config.go.
    #
    # By default, structured logging call parameters are checked, but usage of
    # those calls is not required. That is changed on a per-file basis.
    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractPluginValidatingSmokeTest.groovy

            }
            result
        }
    
        @UnsupportedWithConfigurationCache(
            because = "some plugins are not compatible with the configuration cache but it doesn't really matter because we get the results with the regular test suite"
        )
        def "performs static analysis of plugin #id version #version"() {
            def extraPluginsBlock = getExtraPluginsRequiredForValidation(id, version).collect { pluginId, pluginVersion ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-order-and-default-exec/pom.xml

      <description>
        Verify that default plugin executions contributed by the packaging are executed before user-defined
        executions from the POM's build section, regardless whether the executions are defined in the regular
        plugins section or the plugin management section.
      </description>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-resources-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ProjectLibraryBinaryLocator.java

            this.projectModelResolver = projectModelResolver;
            this.domainObjectCollectionFactory = domainObjectCollectionFactory;
        }
    
        // Converts the binaries of a project library into regular binary instances
        @Nullable
        @Override
        public DomainObjectSet<NativeLibraryBinary> getBinaries(LibraryIdentifier libraryIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * <p>
         * This method does not access the file system.
         * It is agnostic to whether a given file object represents a regular file, directory or does not exist.
         * That is, the term “file” is used in the java.io.File sense, not the regular file sense.
         *
         * @param files the site of files to find the encompassing roots of
         * @return the encompassing roots
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top