Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,057 for fetching (0.29 sec)

  1. pkg/wasm/imagefetcher.go

    )
    
    // This file implements the fetcher of "Wasm Image Specification" compatible container images.
    // The spec is here https://github.com/solo-io/wasm/blob/master/spec/README.md.
    // Basically, this supports fetching and unpackaging three types of container images containing a Wasm binary.
    
    type ImageFetcherOption struct {
    	// TODO(mathetake) Add signature verification stuff.
    	PullSecret []byte
    	Insecure   bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables.h

    // on each variable op with value true/false based on variable is initialized
    // in the session or not.
    // If 'session' is NULL the function is no-op.
    // Returns failure in case fetching variables from session failed, success
    // otherwise.
    LogicalResult MarkInitializedVariablesInFunction(func::FuncOp function,
                                                     tensorflow::Session* session);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

      TF_SetStatus(status, TF_OK, "");
      while (true) {
        switch (block->state) {
          case FetchState::ERROR:
            // TF_FALLTHROUGH_INTENDED
          case FetchState::CREATED:
            block->state = FetchState::FETCHING;
            block->mu.Unlock();  // Release the lock while making the API call.
            block->data.clear();
            block->data.resize(block_size_, 0);
            int64_t bytes_transferred;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_gonoproxy.txt

    env GOPROXY=','
    ! go get golang.org/x/text
    stderr '^go: golang.org/x/text: GOPROXY list is not the empty string, but contains no entries$'
    
    # When GOPROXY=off, fetching modules not matched by GONOPROXY fails.
    env GONOPROXY=*/fortune
    env GOPROXY=off
    ! go get golang.org/x/text
    stderr '^go: golang.org/x/text: module lookup disabled by GOPROXY=off$'
    
    # GONOPROXY bypasses proxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProviderTest.groovy

            1 * action.execute(_) >> { TestClassResult r ->
                assert r.id == 2
                assert r.className == 'class-2'
            }
            0 * action._
        }
    
        def "maps class id to original id when fetching test output"() {
            def writer = Stub(Writer)
            def class1 = Stub(TestClassResult) {
                getId() >> 12
                getClassName() >> 'class-1'
            }
            def class2 = Stub(TestClassResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. hack/verify-licenses.sh

    echo '[INFO] Installing go-licenses...'
    go install github.com/google/go-licenses@latest
    
    # Fetching CNCF Approved List Of Licenses
    # Refer: https://github.com/cncf/foundation/blob/main/allowed-third-party-license-policy.md
    curl -s 'https://spdx.org/licenses/licenses.json' -o "${ARTIFACTS}"/licenses.json
    
    echo '[INFO] Fetching current list of CNCF approved licenses...'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_issue61415.txt

    [short] skip 'generates a vcstest git repo'
    [!git] skip
    
    env GOPROXY=direct
    
    # Control case: fetching a nested module at a tag that exists should
    # emit Origin metadata for that tag and commit, and the origin should
    # be reusable for that tag.
    
    go list -json -m --versions -e vcs-test.golang.org/git/issue61415.git/nested@has-nested
    cp stdout has-nested.json
    stdout '"Origin":'
    stdout '"VCS": "git"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. pkg/bootstrap/platform/gcp.go

    func (e *gcpEnv) Locality() *core.Locality {
    	var l core.Locality
    	loc := e.Metadata()[GCPLocation]
    	if loc == "" {
    		log.Warnf("Error fetching GCP zone: %v", loc)
    		return &l
    	}
    	r, err := zoneToRegion(loc)
    	if err != nil {
    		log.Warnf("Error fetching GCP region: %v", err)
    		return &l
    	}
    	return &core.Locality{
    		Region:  r,
    		Zone:    loc,
    		SubZone: "", // GCP has no subzone concept
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    stderr 'Confirm the import path was entered correctly.'
    stderr 'If this is a private repository, see https://golang.org/doc/faq#git_https for additional information.'
    ! stdout .
    
    # Fetching a nonexistent commit should return an "unknown revision"
    # error message.
    ! go mod download github.com/golang/term@86186f3aba07ed0212cfb944f3398997d2d07c6b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list_sums.txt

    go list -m -mod=readonly rsc.io/quote@latest
    stdout '^rsc\.io/quote v1\.5\.2$'
    ! stderr .
    
    go list -m -mod=readonly -versions rsc.io/quote
    stdout 'rsc\.io/quote v1\.0\.0 .* v1\.5\.3-pre1$'
    ! stderr .
    
    # Incidentally fetching the required version of a module records its checksum,
    # just because it happens to be in the build list, and recording the checksum
    # triggers an error under -mod=readonly.
    #
    # TODO(#41297): This should not be an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top