Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for LEARN (0.04 sec)

  1. docs/en/docs/tutorial/bigger-applications.md

        ```Python
        from .routers import items, users
        ```
    
        The second version is an "absolute import":
    
        ```Python
        from app.routers import items, users
        ```
    
        To learn more about Python Packages and Modules, read <a href="https://docs.python.org/3/tutorial/modules.html" class="external-link" target="_blank">the official Python documentation about Modules</a>.
    
    ### Avoid name collisions
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    This lazy evaluation is a key benefit of accepting any value when setting a file property and then resolving that value when reading the property.
    
    You can learn more about working with files lazily in <<working_with_files.adoc#working_with_files,Working with Files>>.
    
    [[capturing_user_input_to_configure_plugin_runtime_behavior]]
    == Making a plugin configurable using extensions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/envcmd/env.go

    			continue
    		}
    		switch x {
    		case '%':
    			b.WriteString("%%")
    		case '<', '>', '|', '&', '^':
    			// These are special characters that need to be escaped with ^. See
    			// https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/set_1.
    			b.WriteByte('^')
    			b.WriteByte(x)
    		default:
    			b.WriteByte(x)
    		}
    	}
    	return b.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    2. Then, you'll convert this custom task to use the Worker API.
    3. Then, we'll explore running the task with different levels of isolation.
    
    In the process, you'll learn about the basics of the Worker API and the capabilities it provides.
    
    === Step 1. Create a custom task class
    
    First, create a custom task that generates MD5 hashes of a configurable set of files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/query-params-str-validations.md

    If you feel lost with all these **"regular expression"** ideas, don't worry. They are a hard topic for many people. You can still do a lot of stuff without needing regular expressions yet.
    
    But whenever you need them and go and learn them, know that you can already use them directly in **FastAPI**.
    
    ### Pydantic v1 `regex` instead of `pattern`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/fsys/fsys.go

    	}
    	if len(path) < 2 {
    		return 0
    	}
    	// with drive letter
    	c := path[0]
    	if path[1] == ':' && ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') {
    		return 2
    	}
    	// is it UNC? https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file
    	if l := len(path); l >= 5 && isSlash(path[0]) && isSlash(path[1]) &&
    		!isSlash(path[2]) && path[2] != '.' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/sampleJavaProject/groovy",files="build.gradle[tags=inner-link-task-properties]"]
    ====
    
    You can learn more about the `ProjectLayout` class in <<service_injection.adoc#sec:projectlayout,Services>>.
    
    [[sec:single_file_paths]]
    === Using `Project.file()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    }
    ----
    
    TIP: `jetbrains-intellij` is available as the Gradle generated safe accessor: `jetbrains.intellij`.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/internal/bisect/bisect.go

    // 0x1234 is the change ID in hexadecimal.
    // An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
    //
    // When [Matcher.Visible] returns false, the match reports are only
    // being processed by bisect to learn the set of enabled changes,
    // not shown to the user, meaning that each report can be a match
    // marker on a line by itself, eliding the usual textual description.
    // When the textual description is expensive to compute,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/types.go

    }
    
    // specification of a horizontal pod autoscaler.
    type HorizontalPodAutoscalerSpec struct {
    	// reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption
    	// and will set the desired number of pods by using its Scale subresource.
    	ScaleTargetRef CrossVersionObjectReference `json:"scaleTargetRef" protobuf:"bytes,1,opt,name=scaleTargetRef"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top