Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,660 for pats (0.26 sec)

  1. maven-core/src/test/resources/projects/past-model-version-pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
        <!-- once we move past supporting modelVersion 4.0.0 we should update this version -->
        <modelVersion>3.9.9</modelVersion>
        <groupId>tests.project</groupId>
        <artifactId>past-model-version</artifactId>
        <version>1</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 20:33:44 UTC 2019
    - 1K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/validation/hard-coded-system-path.xml

      <dependencies>
        <dependency>
          <groupId>test</groupId>
          <artifactId>a</artifactId>
          <version>0.2</version>
          <scope>system</scope>
          <systemPath>should-use-variables-and-not-hard-code-this-path</systemPath>
        </dependency>
        <dependency>
          <groupId>test</groupId>
          <artifactId>b</artifactId>
          <version>0.1</version>
          <scope>system</scope>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 27 17:19:32 UTC 2010
    - 1.4K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/path-operation-advanced-configuration.md

    If you want to use your APIs' function names as `operationId`s, you can iterate over all of them and override each *path operation's* `operation_id` using their `APIRoute.name`.
    
    You should do it after adding all your *path operations*.
    
    ```Python hl_lines="2  12-21  24"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial002.py!}
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/path-params-numeric-validations.md

    Do mesmo modo que você pode declarar mais validações e metadados para parâmetros de consulta com `Query`, você pode declarar os mesmos tipos de validações e metadados para parâmetros de rota com `Path`.
    
    ## Importe `Path`
    
    Primeiro, importe `Path` de `fastapi`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/path_params_numeric_validations/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/virtualservice/gateways.go

    	for i, h := range server.Hosts {
    		if strings.Contains(h, "/") {
    			parts := strings.Split(h, "/")
    			if parts[0] == "." {
    				server.Hosts[i] = fmt.Sprintf("%s/%s", namespace, parts[1])
    			} else if parts[0] == "*" {
    				if parts[1] == "*" {
    					server.Hosts = []string{"*"}
    					return
    				}
    				server.Hosts[i] = parts[1]
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 01:28:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/database/sql/fakedb_test.go

    	}
    	return stmt, nil
    }
    
    // parts are table|col=type,col2=type2
    func (c *fakeConn) prepareCreate(stmt *fakeStmt, parts []string) (*fakeStmt, error) {
    	if len(parts) != 2 {
    		stmt.Close()
    		return nil, errf("invalid CREATE syntax with %d parts; want 2", len(parts))
    	}
    	stmt.table = parts[0]
    	for n, colspec := range strings.Split(parts[1], ",") {
    		nameType := strings.Split(colspec, "=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go

    	// Split name into components.
    	var parts []string
    	last := 0
    	for i := 0; i < len(name); i++ {
    		if name[i] == '.' {
    			parts = append(parts, name[last:i])
    			last = i + 1
    		}
    	}
    	parts = append(parts, name[last:])
    
    	mib := []int32{}
    	// Discover the nodes and construct the MIB OID.
    	for partno, part := range parts {
    		nodes, err := sysctlNodes(mib)
    		if err != nil {
    			return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ComponentIdentifierParserFactory.java

                String[] parts = notation.split(":");
                if (parts.length != 3) {
                    throw new InvalidUserDataException("Invalid module component notation: " + notation + " : must be a valid 3 part identifier, eg.: org.gradle:gradle:1.0");
                }
                return DefaultModuleComponentIdentifier.newId(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    			if debug {
    				prefix := fmt.Sprintf("in %s, importing %s: ",
    					d.pkg.Path(), imp.Path())
    				log.Print(prefix, fmt.Sprintf(format, args...))
    			}
    		}
    
    		// Read the gob-encoded facts.
    		data, err := read(imp.Path())
    		if err != nil {
    			return nil, fmt.Errorf("in %s, can't import facts for package %q: %v",
    				d.pkg.Path(), imp.Path(), err)
    		}
    		if len(data) == 0 {
    			continue // no facts
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheVersion.java

        public static CacheVersion parse(String version) {
            String[] parts = StringUtils.split(version, COMPONENT_SEPARATOR);
            int[] components = new int[parts.length];
            for (int i = 0; i < parts.length; i++) {
                components[i] = Integer.parseInt(parts[i]);
            }
            return new CacheVersion(components);
        }
    
        public static CacheVersion empty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top