Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 350 for regular (0.13 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/InclusiveRepositoryContentDescriptor.java

        /**
         * Declares that a specific module version should be searched for in this repository, using regular expressions.
         *
         * @param groupRegex the group name regular expression
         * @param moduleNameRegex the module name regular expression
         * @param versionRegex the module version regular expression
         */
        void includeVersionByRegex(String groupRegex, String moduleNameRegex, String versionRegex);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

        /**
         * Renames files based on a regular expression.  Uses java.util.regex type of regular expressions.  Note that the
         * replace string should use the '$1' syntax to refer to capture groups in the source regular expression.  Files
         * that do not match the source regular expression will be copied with the original name.
         *
         * <p> Example:
         * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. test/README.md

    To run just tests from specified files in this directory, execute:
    
    	../bin/go test cmd/internal/testdir -run='Test/(file1.go|file2.go|...)'
    
    Standard library tests should be written as regular Go tests in the appropriate package.
    
    The tool chain and runtime also have regular Go tests in their packages.
    The main reasons to add a new test to this directory are:
    
    * it is most naturally expressed using the test runner; or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
  4. src/cmd/go/internal/lockedfile/lockedfile_filelock.go

    			// opened”, but doesn't define “possible” (golang.org/issue/28699).
    			// We'll treat regular files (and symlinks to regular files) as “possible”
    			// and ignore errors for the rest.
    			if fi, statErr := f.Stat(); statErr != nil || fi.Mode().IsRegular() {
    				filelock.Unlock(f)
    				f.Close()
    				return nil, err
    			}
    		}
    	}
    
    	return f, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      optional string ir_dump_dir = 1 [default = ""];
    
      // Regular expression that matches the names of passes in pascal case (e.g.,
      // FooPass) before/after which MLIR will be dumped. Effective only if
      // ir_dump_dir is not empty.
      optional string ir_dump_pass_regex = 2 [default = ".*"];
    
      // Regular expression that matches the names of functions to be dumped. MLIR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

        void excludeModule(String group, String moduleName);
    
        /**
         * Declares that an entire module shouldn't be searched for in this repository, using regular expressions.
         *
         * @param groupRegex the group name regular expression
         * @param moduleNameRegex the module name regular expression
         */
        void excludeModuleByRegex(String groupRegex, String moduleNameRegex);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/hooks.go

    // ("go build -cover ..."), in which case we immediately try to write
    // out the meta-data file, and register emitCounterData as an exit
    // hook.
    //
    // If 'istest' is true (indicating that the program in question is a
    // Go test binary), then we tentatively queue up both emitMetaData and
    // emitCounterData as exit hooks. In the normal case (e.g. regular "go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/typeCreator/Fe10IdeNormalAnalysisSourceModuleTypeParameterTypeTestGenerated.java

        runTest("analysis/analysis-api/testData/components/typeCreator/typeParameter/multipleBounds.kt");
      }
    
      @Test
      @TestMetadata("regular.kt")
      public void testRegular() {
        runTest("analysis/analysis-api/testData/components/typeCreator/typeParameter/regular.kt");
      }
    
      @Test
      @TestMetadata("reified.kt")
      public void testReified() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/go/build/testdata/doc/d_test.go

    // Doc from regular tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 39 bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

            ) == [added("root"), added("root/one"), added("root/two")]
        }
    
        def "type change missing -> regular file"() {
            expect:
            changes(
                missing("root"),
                regularFile("root", 0x1234)
            ) == [added("root")]
        }
    
        def "type change regular file -> directory"() {
            expect:
            changes(
                regularFile("root", 0x1234),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top