Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 621 for fetches (0.26 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		ui.PrintErr(fmt.Sprintf("Fetched %d base profiles out of %d", got, want))
    	}
    
    	return psrc, pbase, msrc, mbase, save, nil
    }
    
    // chunkedGrab fetches the profiles described in source and merges them into
    // a single profile. It fetches a chunk of profiles concurrently, with a maximum
    // chunk size to limit its memory usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/IntermediateToolingModelProvider.java

    import java.util.List;
    
    /**
     * Fetches models for given projects in an Isolated Project-compatible manner.
     * <p>
     * It should be used by tooling model builders when they need to aggregate models
     * from <b>multiple projects of the same build</b>.
     */
    @NonNullApi
    @ServiceScope(Scope.Build.class)
    public interface IntermediateToolingModelProvider {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/sync/example_test.go

    	for _, url := range urls {
    		// Increment the WaitGroup counter.
    		wg.Add(1)
    		// Launch a goroutine to fetch the URL.
    		go func(url string) {
    			// Decrement the counter when the goroutine completes.
    			defer wg.Done()
    			// Fetch the URL.
    			http.Get(url)
    		}(url)
    	}
    	// Wait for all HTTP fetches to complete.
    	wg.Wait()
    }
    
    func ExampleOnce() {
    	var once sync.Once
    	onceBody := func() {
    		fmt.Println("Only once")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 17:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/volume/plugins.go

    	}
    	if len(matchedPluginNames) > 1 {
    		return nil, fmt.Errorf("multiple volume plugins matched: %s", strings.Join(matchedPluginNames, ","))
    	}
    
    	return match, nil
    }
    
    // FindPluginByName fetches a plugin by name. If no plugin is found, returns error.
    func (pm *VolumePluginMgr) FindPluginByName(name string) (VolumePlugin, error) {
    	pm.mutex.RLock()
    	defer pm.mutex.RUnlock()
    
    	var match VolumePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsReadOnlyCacheDependencyResolutionTest.groovy

    class StaticVersionsReadOnlyCacheDependencyResolutionTest extends AbstractReadOnlyCacheDependencyResolutionTest {
    
        @Override
        boolean isPublishJavadocsAndSources() {
            true
        }
    
        def "fetches dependencies from read-only cache"() {
            given:
            buildFile << """
                dependencies {
                    implementation 'org.readonly:core:1.0'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    // Appends `value` to the arguments of the `FetchOp` of `graph_op`.
    void AppendValueToFetch(GraphOp graph_op, Value value) {
      FetchOp old_main_fetch = graph_op.GetFetch();
      auto fetches = llvm::to_vector(old_main_fetch.getFetches());
      fetches.emplace_back(value);
    
      auto builder = OpBuilder::atBlockTerminator(&graph_op.GetBody());
      builder.create<FetchOp>(old_main_fetch.getLoc(), std::move(fetches));
      old_main_fetch.erase();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    		}
    	}
    
    	// Not all items are subject to timeout. Proceed only if the non-cancellable items have completed.
    	mandatoryWg.Wait()
    
    	// If log fetches have completed, cancel the timeout.
    	go func() {
    		optionalWg.Wait()
    		cmdTimer.Reset(0)
    	}()
    
    	// Wait for log fetches, up to the timeout.
    	<-cmdTimer.C
    
    	// Find the timeout duration left for the analysis process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      return wrapper_island_op;
    }
    
    // Adds a new fetch operand for the main function's GraphOp.
    void AddFetchOperandToMain(GraphOp main_graph_op, const Value fetch_operand) {
      FetchOp old_fetch = main_graph_op.GetFetch();
      const absl::Cleanup erase_old_fetch = [old_fetch]() mutable {
        old_fetch.erase();
      };
    
      auto fetches = llvm::to_vector(old_fetch.getFetches());
      fetches.emplace_back(fetch_operand);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_platform_info.h

        DeviceCompiler<xla::LocalExecutable, xla::LocalClient>**
            xla_device_compiler);
    
    // Fetches a DeviceCompiler from the tfrt_global resource manager (or creates
    // one there if not found) that uses xla::PjRtClient using an appropriate
    // PjRtClient for `platform_info.device_type()` and sets *pjrt_device_compiler
    // to point to it. Also fetches/creates a DeviceCompilationProfiler from/in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    	configFileName = "config.json"
    )
    
    // needNoConsole is used on windows to set the windows.CREATE_NO_WINDOW
    // creation flag.
    var needNoConsole = func(cmd *exec.Cmd) {}
    
    // Download fetches the requested telemetry UploadConfig using "go mod
    // download". If envOverlay is provided, it is appended to the environment used
    // for invoking the go command.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top