Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/cgo/gcc_netbsd.c

    	stack_t ss;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	// On NetBSD, a new thread inherits the signal stack of the
    	// creating thread. That confuses minit, so we remove that
    	// signal stack here before calling the regular mstart. It's
    	// a bit baroque to remove a signal stack here only to add one
    	// in minit, but it's a simple change that keeps NetBSD
    	// working like other OS's. At this point all signals are
    	// blocked, so there is no race.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:55:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. test/typeparam/mdempsky/13.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // Interface which will be used as a regular interface type and as a type bound.
    type Mer interface{
    	M()
    }
    
    // Interface that is a superset of Mer.
    type Mer2 interface {
    	M()
    	String() string
    }
    
    func F[T Mer](t T) {
    	T.M(t)
    	t.M()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 14 17:55:47 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top