Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mapiter1 (1.36 sec)

  1. test/escape_reflect.go

    	return mv.MapKeys()
    }
    
    func mapiter1(m map[string]string) *reflect.MapIter { // ERROR "leaking param: m$"
    	mv := reflect.ValueOf(m)
    	return mv.MapRange()
    }
    
    func mapiter2(m map[string]string) string { // ERROR "leaking param: m$"
    	mv := reflect.ValueOf(m)
    	it := mv.MapRange()
    	if it.Next() {
    		return it.Key().String()
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. api/go1.12.txt

    pkg os, method (*ProcessState) ExitCode() int
    pkg os/exec, method (ExitError) ExitCode() int
    pkg reflect, method (*MapIter) Key() Value
    pkg reflect, method (*MapIter) Next() bool
    pkg reflect, method (*MapIter) Value() Value
    pkg reflect, method (Value) MapRange() *MapIter
    pkg reflect, type MapIter struct
    pkg runtime/debug, func ReadBuildInfo() (*BuildInfo, bool)
    pkg runtime/debug, type BuildInfo struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 21:21:53 UTC 2019
    - 13.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        WaiterThread waiter1 = new WaiterThread(future);
        waiter1.start();
        waiter1.awaitWaiting();
    
        WaiterThread waiter2 = new WaiterThread(future);
        waiter2.start();
        waiter2.awaitWaiting();
        // The waiter queue should be waiter2->waiter1
    
        // This should wake up waiter1 and cause the waiter1 node to be removed.
        waiter1.interrupt();
    
        waiter1.join();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        WaiterThread waiter1 = new WaiterThread(future);
        waiter1.start();
        waiter1.awaitWaiting();
    
        WaiterThread waiter2 = new WaiterThread(future);
        waiter2.start();
        waiter2.awaitWaiting();
        // The waiter queue should be waiter2->waiter1
    
        // This should wake up waiter1 and cause the waiter1 node to be removed.
        waiter1.interrupt();
    
        waiter1.join();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. api/go1.18.txt

    pkg reflect, method (*MapIter) Reset(Value)
    pkg reflect, method (Value) CanComplex() bool
    pkg reflect, method (Value) CanFloat() bool
    pkg reflect, method (Value) CanInt() bool
    pkg reflect, method (Value) CanUint() bool
    pkg reflect, method (Value) FieldByIndexErr([]int) (Value, error)
    pkg reflect, method (Value) SetIterKey(*MapIter)
    pkg reflect, method (Value) SetIterValue(*MapIter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

             ++member_iter) {
          ResourceAndDevice resource_and_device = *member_iter;
          auto map_iter = chain_resource_to_ops_map.find(resource_and_device);
          if (map_iter == chain_resource_to_ops_map.end()) continue;
          OperationSetTy& resource_ops = map_iter->getSecond();
    
          // Add dependencies between all ops that access current resource and chain
          // source and sink.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    	mounter1, err := plugin.NewMounter(volumeSpec1, pod1, volume.VolumeOptions{})
    	if err != nil {
    		t.Fatalf("NewMounter failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    	mapper1, err := plugin.NewBlockVolumeMapper(volumeSpec1, pod1, volume.VolumeOptions{})
    	if err != nil {
    		t.Fatalf("NewBlockVolumeMapper failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	// structure, not the stack. Check if this is the case and if so,
    	// remove.
    
    	// Remove up to two frames.
    	maxiter := 2
    	// Allow one different sample for this many samples with the same
    	// second-to-last frame.
    	similarSamples := 32
    	margin := len(p.Sample) / similarSamples
    
    	for iter := 0; iter < maxiter; iter++ {
    		addr1 := make(map[uint64]int)
    		for _, s := range p.Sample {
    			if len(s.Location) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top