Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 830 for regular (0.38 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. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

                inOrder(elementProvider) {
                    verifyNoMoreInteractions()
                }
            }
    
            container.apply {
                // regular syntax
                val domainObject by existing
                assertThat(domainObject, sameInstance(elementProvider))
            }
        }
    
        @Test
        fun `val domainObject by existing { }`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. pkg/kubelet/status/generate_test.go

    				InitContainers: []v1.Container{
    					{Name: "restartable-init-1", RestartPolicy: &containerRestartPolicyAlways},
    				},
    				Containers: []v1.Container{
    					{Name: "regular-1"},
    				},
    			},
    			containerStatuses: []v1.ContainerStatus{
    				getReadyStatus("regular-1"),
    			},
    			podPhase:    v1.PodRunning,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

            }
            0 * _
    
            where:
            scenario                                           | changing | mustRefresh | expired | ruleClass
            'regular module caching'                           | false    | false       | false   | TestSupplier
            'regular module caching (--refresh-dependencies)'  | false    | true        | false   | TestSupplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/img/ant-task-migration.graffle

    ansi\ansicpg1252\cocoartf1671 {\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 assemble}Bounds{{383.5, 146}, {100.25, 43}}ClassShapedGraphicFo-RegularSize12ID17Sty{\rtf1\ansi\ansicpg1252\cocoartf1671 {\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            }
            0 * _
    
            where:
            scenario                                           | changing | mustRefresh | expired | ruleClass
            'regular module caching'                           | false    | false       | false   | TestSupplier
            'regular module caching (--refresh-dependencies)'  | false    | true        | false   | TestSupplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. 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)
  10. src/regexp/regexp.go

    // of the regular expression re. It returns the boolean true if the
    // literal string comprises the entire regular expression.
    func (re *Regexp) LiteralPrefix() (prefix string, complete bool) {
    	return re.prefix, re.prefixComplete
    }
    
    // MatchReader reports whether the text returned by the [io.RuneReader]
    // contains any match of the regular expression re.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top