Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 206 for iter2 (0.07 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

        }
    
        public String toString() {
            String ret = proto + ":" + server + "[" + endpoint;
            if (options != null) {
                Iterator iter = options.keySet().iterator();
                while (iter.hasNext()) {
                    Object key = iter.next();
                    Object val = options.get(key);
                    ret += "," + key + "=" + val;
                }
            }
            ret += "]";
            return ret;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/test/notATest.yaml

    name: Test
    number: 1234
    items:
        - name: item1
          description: first item
        - name: item2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 128 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		if e := v.Index(a.iter.index); e.IsValid() {
    			x = e.Interface().(ast.Node)
    		}
    
    		a.iter.step = 1
    		a.apply(parent, name, &a.iter, x)
    		a.iter.index += a.iter.step
    	}
    	a.iter = saved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

            // corresponding indices in the pass_ids vector.
            auto iter = pass_names.begin();
            while ((iter = std::find(iter, pass_names.end(), pass->name())) !=
                   pass_names.end()) {
              pass_ids[std::distance(pass_names.begin(), iter)] = pass.get();
              iter++;
            }
          }
        }
      }
      return pass_ids;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/testing/benchmark_test.go

    		procs := uint32(0)
    		iters := uint64(0)
    		b.SetParallelism(3)
    		b.RunParallel(func(pb *testing.PB) {
    			atomic.AddUint32(&procs, 1)
    			for pb.Next() {
    				atomic.AddUint64(&iters, 1)
    			}
    		})
    		if want := uint32(3 * runtime.GOMAXPROCS(0)); procs != want {
    			t.Errorf("got %v procs, want %v", procs, want)
    		}
    		if iters != uint64(b.N) {
    			t.Errorf("got %v iters, want %v", iters, b.N)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

                len = name.length();
                if ( len > maxLen ) {
                    maxLen = len;
                }
    
                iter = sorted.listIterator();
                for ( j = 0; iter.hasNext(); j++ ) {
                    if ( sort == 0 ) {
                        if ( compareNames(dirents[ i ], name, iter.next()) < 0 ) {
                            break;
                        }
                    }
                    else if ( sort == 1 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue59411.go

    	const N = 13 << 4 // 6.5 * 2 * 2^k
    	for i := 0; i < N; i++ {
    		m[math.NaN()] = i
    	}
    	// Trigger growth.
    	m[math.NaN()] = N
    
    	// Iterate through map.
    	i := 0
    	v := reflect.ValueOf(m)
    	iter := v.MapRange()
    	for iter.Next() {
    		if i == 6 {
    			// Partway through iteration, clear the map.
    			v.Clear()
    		} else if i > 6 {
    			// If we advance to the next iteration, that's a bug.
    			panic("BAD")
    		}
    		i++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 08 05:25:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.cc

      module_op.walk([&py_function_library, &calibration_options, &status,
                      &statistics_map](mlir::TF::CustomAggregatorOp aggregator_op) {
        mlir::StringRef id = aggregator_op.getId();
        auto iter = statistics_map.find(id);
        if (iter == statistics_map.end()) {
          status = absl::InternalError(
              absl::StrFormat("Calibrated data does not exist. Cannot find "
                              "statistics. value for id: %s",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/functional-while-ops.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=iter,val -tf-input-data-types=DT_INT32,DT_FLOAT -tf-input-shapes=':' -tf-output-arrays=StatefulWhile:1,StatelessWhile:1,WhileWithOutputShapes:1 -o - -mlir-print-debuginfo -mlir-print-local-scope | FileCheck %s
    
    # Verify that TensorFlow While and StatelessWhile ops are mapped to the
    # composite While op in MLIR with is_stateless attribute set accordingly to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    // function values via a struct field.
    //
    //go:noinline
    func ExerciseFuncField(iter int, a1, a2 AddFunc, m1, m2 mult.MultFunc) int {
    	ops := struct {
    		a AddFunc
    		m mult.MultFunc
    	}{}
    
    	val := 0
    	for i := 0; i < iter; i++ {
    		ops.a = a1
    		ops.m = m1
    		if i%10 == 0 {
    			ops.a = a2
    			ops.m = m2
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top