Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,293 for Pull (0.05 sec)

  1. .github/workflows/pull-metadata.yml

    jobs:
      check_pull_metadata:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Check that PRs have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/pull-metadata.ts
          - uses: gradle/issue-management-action@v1
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 477 bytes
    - Viewed (0)
  2. src/internal/trace/testdata/testprog/iter-pull.go

    func main() {
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    
    	// Try simple pull iteration.
    	i := pullRange(100)
    	for {
    		_, ok := i.next()
    		if !ok {
    			break
    		}
    	}
    
    	// Try bouncing the pull iterator between two goroutines.
    	var wg sync.WaitGroup
    	var iterChans [2]chan intIter
    	wg.Add(2)
    	iterChans[0] = make(chan intIter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. releasenotes/notes/wasm-pull-policy.yaml

    Ingwon Song <******@****.***> 1652889701 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 18 16:01:41 UTC 2022
    - 155 bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-image-pull-secret.yaml.injected

          creationTimestamp: null
          labels:
            app: hello
            security.istio.io/tlsMode: istio
            service.istio.io/canonical-name: hello
            service.istio.io/canonical-revision: latest
            tier: backend
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. releasenotes/notes/wasm-pull-policy-http.yaml

    Ingwon Song <******@****.***> 1654090630 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 01 13:37:10 UTC 2022
    - 213 bytes
    - Viewed (0)
  6. releasenotes/notes/fix-gateway-not-respect-image-pull-policy.yaml

    Kebe <******@****.***> 1668699237 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 15:33:57 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/hello-image-pull-secret.yaml.11.mesh.gen.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 191 bytes
    - Viewed (0)
  9. .github/pull_request_template.md

           Best practice is to use the JIRA issue title in both the pull request title and in the first line of the commit message.
     - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
     - [ ] Run `mvn clean verify` to make sure basic checks pass. A more thorough check will
           be performed on your pull request automatically.
     - [ ] You have run the [Core IT][core-its] successfully.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    Push your locally committed changes to the remote origin (your fork)
    
    ```
    git push origin my-new-feature
    ```
    
    ### Create a Pull Request
    
    Pull requests can be created via GitHub. Refer to [this document](https://help.github.com/articles/creating-a-pull-request/) for detailed steps on how to create a pull request. After a Pull Request gets peer reviewed and approved, it will be merged.
    
    ## FAQs
    
    ### How does ``MinIO`` manage dependencies?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top