Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 350 for regular (0.14 sec)

  1. releasenotes/notes/40729.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    
    issue:
      - 39903
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 15:25:23 UTC 2022
    - 183 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/RegularFile.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.file;
    
    import java.io.File;
    
    /**
     * Represents a regular file at a fixed location on the file system. A regular file is a file that is not a directory and is not some special kind of file such as a device.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 12:56:25 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. .space/idea.devfile.yaml

    schemaVersion: 2.2.0
    attributes:
      space:
        instanceType: regular
        editor:
          type: Idea
    components:
      - name: kotlin-build-env
        container:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 15:24:12 UTC 2023
    - 239 bytes
    - Viewed (0)
  4. docs/docker/README.md

      -v D:\data:/data \
      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    ### Run MinIO Docker as a regular user
    
    Docker provides standardized mechanisms to run docker containers as non-root users.
    
    #### GNU/Linux and macOS (regular user)
    
    On Linux and macOS you can use `--user` to run the container as regular user.
    
    > NOTE: make sure --user has write permission to *${HOME}/data* prior to using `--user`.
    
    ```sh
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java

         */
        boolean match(String url);
    
        /**
         * Add an url pattern as a target.
         *
         * @param urlPattern Regular expression that is crawled
         */
        void addInclude(String urlPattern);
    
        /**
         * Add an url pattern as a non-target.
         *
         * @param urlPattern Regular expression that is not crawled
         */
        void addExclude(String urlPattern);
    
        /**
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

                }
            }
        }
    
        public void addClient(final String regex, final CrawlerClient client) {
            if (StringUtil.isBlank(regex)) {
                throw new CrawlerSystemException("A regular expression is null.");
            }
            if (client == null) {
                throw new CrawlerSystemException("CrawlerClient is null.");
            }
            clientMap.put(Pattern.compile(regex), client);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

            def dir2 = provider.get()
            dir2.getAsFile() == projectDir.file("b")
    
            dir1.getAsFile() == projectDir.file("a")
            dir2.getAsFile() == projectDir.file("b")
        }
    
        def "can resolve regular file relative to project directory"() {
            def pathProvider = withValues("a", "b")
    
            expect:
            def file = layout.projectDirectory.file("child")
            file.getAsFile() == projectDir.file("child")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/gofmt/testdata/typealias.golden

    import "p"
    
    type _ = int
    type a = struct{ x int }
    type b = p.B
    
    type (
    	_  = chan<- int
    	aa = interface{}
    	bb = p.BB
    )
    
    // TODO(gri) We may want to put the '=' into a separate column if
    // we have mixed (regular and alias) type declarations in a group.
    type (
    	_   chan<- int
    	_   = chan<- int
    	aa0 interface{}
    	aaa = interface{}
    	bb0 p.BB
    	bbb = p.BB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 10 00:09:48 UTC 2017
    - 365 bytes
    - Viewed (0)
  9. test/func1.go

    // Copyright 2009 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.
    
    // Test that result parameters are in the same scope as regular parameters.
    // Does not compile.
    
    package main
    
    func f1(a int) (int, float32) {
    	return 7, 7.0
    }
    
    
    func f2(a int) (a int, b float32) { // ERROR "duplicate argument a|definition|redeclared"
    	return 8, 8.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 445 bytes
    - Viewed (0)
  10. src/regexp/syntax/doc.go

    // Code generated by mksyntaxgo from the RE2 distribution. DO NOT EDIT.
    
    /*
    Package syntax parses regular expressions into parse trees and compiles
    parse trees into programs. Most clients of regular expressions will use the
    facilities of package [regexp] (such as [regexp.Compile] and [regexp.Match]) instead of this package.
    
    # Syntax
    
    The regular expression syntax understood by this package when parsing with the [Perl] flag is as follows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top