Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 372 for Review (0.11 sec)

  1. docs/zh/docs/contributing.md

        * 也可以在现有 PR 中通过你使用的语言标签来筛选对应的 PR,举个例子,对于西班牙语,标签是 <a href="https://github.com/tiangolo/fastapi/pulls?q=is%3Apr+is%3Aopen+sort%3Aupdated-desc+label%3Alang-es+label%3A%22awaiting+review%22" class="external-link" target="_blank">`lang-es`</a>。
    
    * 请使用相同的 Python 示例,且只需翻译文档中的文本,不用修改其它东西。
    
    * 请使用相同的图片、文件名以及链接地址,不用修改其它东西。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 11:57:21 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. pkg/kube/util.go

    		}
    		if auths.Exec != nil && !allowlist.Contains("exec") {
    			return fmt.Errorf("exec is not allowed")
    		}
    		// Reconstruct the AuthInfo so if a new field is added we will not include it without review
    		config.AuthInfos[k] = &api.AuthInfo{
    			// LocationOfOrigin: Not needed
    			ClientCertificate:     auths.ClientCertificate,
    			ClientCertificateData: auths.ClientCertificateData,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

                    sb.append("\n");
                }
                if (hasMissingKeys) {
                    sb.append("   - some keys couldn't be downloaded. They were automatically added as ignored keys but you should review if this is acceptable. Look for entries with the following comment: ");
                    sb.append(KEY_NOT_DOWNLOADED);
                    sb.append("\n");
                }
                if (hasFailedVerification) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

        This command will be run from the **current working directory**, the same `/code` directory you set above with `WORKDIR /code`.
    
    !!! tip
        Review what each line does by clicking each number bubble in the code. 👆
    
    You should now have a directory structure like:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ├── Dockerfile
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. src/cmd/internal/moddeps/moddeps_test.go

    	// are vendored in the corresponding GOROOT module.
    	//
    	// This property allows offline development within the Go project, and ensures
    	// that all dependency changes are presented in the usual code review process.
    	//
    	// As a quick first-order check, avoid network access and the need to copy the
    	// entire GOROOT tree or explicitly invoke version control to check for changes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    Istio provides a few helper libraries to get started writing a controller. While these libraries help, there are still a lot of subtleties in correctly writing (and testing!) a controller properly.
    
    To get started writing a controller, review the [Example Controller](../../pkg/kube/controllers/example_test.go).
    
    ### Controllers overview
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. .space/CODEOWNERS

    /test-instrumenter/ "Kotlin Build Infrastructure"
    
    /tests/ "Kotlin Build Infrastructure"
    
    /third-party/ "Kotlin Compiler Core"
    
    /wasm/ "Kotlin Wasm"
    
    # Generated files (no review required)
    *Generated.java "Kotlin" "Kotlin IDE Analysis Core"
    
    # Singular files
    /.gitattributes "Kotlin Build Infrastructure"
    /ChangeLog.md "Kotlin Release"
    /CODE_OF_CONDUCT.md "Kotlin Build Infrastructure"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. istioctl/pkg/multicluster/remote_secret.go

    	remoteSecret, warn, err := createRemoteSecret(opt, client)
    	if err != nil {
    		return "", warn, err
    	}
    
    	// convert any binary data to the string equivalent for easier review. The
    	// kube-apiserver will convert this to binary before it persists it to storage.
    	remoteSecret.StringData = make(map[string]string, len(remoteSecret.Data))
    	for k, v := range remoteSecret.Data {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    object " + name); } name.bar(); } catch (IllegalStateExceptio e) { log.error("Something bad happened to " + name, e); } ... } Unless you configure things differently, all log output will be written to System.err. Therefore, you really will want to review the remainder of this page in order to understand how to configure logging for your application. Configuring the Commons Logging Package Choosing A LogFactory Implementation From an application perspective, the first requirement is to retrieve an...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    == Suggestions for authoring your build
    
    [[custom_actions]]
    === Review usages of `doFirst` and `doLast`
    
    Using `doFirst` and `doLast` from a build script on a cacheable task ties you to build script changes since the implementation of the closure comes from the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top