Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,164 for fetches (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go

    type PtraceRegsMipsle struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMipsle fetches the registers used by mipsle binaries.
    func PtraceGetRegsMipsle(pid int, regsout *PtraceRegsMipsle) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    type PtraceRegsMips struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMips fetches the registers used by mips binaries.
    func PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/MultiProcessSafeAsyncPersistentIndexedCache.java

     */
    public interface MultiProcessSafeAsyncPersistentIndexedCache<K, V> extends UnitOfWorkParticipant {
        /**
         * Fetches the given entry, blocking until the result is available.
         */
        @Nullable
        V get(K key);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/test/kube/util.go

    	defaultRetryDelay   = retry.BackoffDelay(time.Millisecond * 200)
    
    	ErrNoPodsFetched = fmt.Errorf("no pods fetched")
    )
    
    // PodFetchFunc fetches pods from a k8s Client.
    type PodFetchFunc func() ([]corev1.Pod, error)
    
    // NewPodFetch creates a new PodFetchFunction that fetches all pods matching the namespace and label selectors.
    func NewPodFetch(a istioKube.CLIClient, namespace string, selectors ...string) PodFetchFunc {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_executor_to_functional.cc

        // Forward island fetches (tf_executor.yield operands) to island op result
        // uses.
        for (auto result :
             llvm::zip(island_op.getOutputs(), island_op.GetYield().getFetches()))
          std::get<0>(result).replaceAllUsesWith(std::get<1>(result));
      }
    
      // Forward graph fetches (tf_executor.fetch operands) to graph op result uses.
      for (auto result :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. pkg/ledger/smt_tools.go

    	s.atomicUpdate = false
    	return s.get(prevRoot, key, nil, 0, s.trieHeight)
    }
    
    // get fetches the value of a key given a trie root
    func (s *smt) get(root []byte, key []byte, batch [][]byte, iBatch, height int) ([]byte, error) {
    	if len(root) == 0 {
    		return nil, nil
    	}
    	if height == 0 {
    		return root[:hashLength], nil
    	}
    	// Fetch the children of the node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top