Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 140 for numbuf (0.2 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    					Scores: []framework.PluginScore{},
    				},
    				{
    					Name:   "node2",
    					Scores: []framework.PluginScore{},
    				},
    			},
    		},
    		{
    			name:           "skipped prescore plugin number greater than the number of score plugins",
    			plugins:        buildScoreConfigDefaultWeights(scorePlugin1),
    			pluginConfigs:  nil,
    			skippedPlugins: sets.New(scorePlugin1, "score-plugin-unknown"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if len(deletedPods.Items) != numPods {
    		t.Errorf("Unexpected number of pods deleted: %d, expected: %d", len(deletedPods.Items), numPods)
    	}
    	expectedCalls := (int64(numPods) + deleteCollectionPageSize - 1) / deleteCollectionPageSize
    	if listCalls := atomic.LoadInt64(&storeWithCounter.listCounter); listCalls != expectedCalls {
    		t.Errorf("Unexpected number of list calls: %d, expected: %d", listCalls, expectedCalls)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    }
    
    // generateEventsUniformDistribution generates events that uniformly spread in the time window
    //
    //	time.Now()-periodSeconds  ; time.Now()
    //
    // It split the time window into several segments (by the number of events) and put the event in the center of the segment
    // it is needed if you want to create events for several policies (to check how "outdated" flag is set).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0, %1 : tensor<*xi32>, tensor<*xf32>
    }
    
    func.func @main(%arg0: tensor<i32>, %arg1: tensor<1xf32>) -> tensor<i32> {
      // expected-error @+1 {{number of operands does not match number of results}}
      %0:1 = "tfl.while"(%arg0, %arg1) ({
      ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
        %1 = func.call @WhileOp_cond(%arg2, %arg3) : (tensor<*xi32>, tensor<*xf32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    case I can go back by railway,' she said to herself.  (Alice had
    been to the seaside once in her life, and had come to the general
    conclusion, that wherever you go to on the English coast you find
    a number of bathing machines in the sea, some children digging in
    the sand with wooden spades, then a row of lodging houses, and
    behind them a railway station.)  However, she soon made out that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    case I can go back by railway,' she said to herself.  (Alice had
    been to the seaside once in her life, and had come to the general
    conclusion, that wherever you go to on the English coast you find
    a number of bathing machines in the sea, some children digging in
    the sand with wooden spades, then a row of lodging houses, and
    behind them a railway station.)  However, she soon made out that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            if (list.shape_size() > 0 &&
                list.shape_size() != signature.input_arg_size()) {
              return errors::FailedPrecondition(
                  "Number of input arguments must be equal to the length of "
                  "_input_shapes attribute in function '",
                  StringRefToView(conversion_metadata.function_name), "'.");
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    				if doesMatch(expectedChain, chain) {
    					t.Errorf("\t matched %v", expectedChain)
    				}
    			}
    		}
    	}
    }
    
    func TestGoVerify(t *testing.T) {
    	// Temporarily enable SHA-1 verification since a number of test chains
    	// require it. TODO(filippo): regenerate test chains.
    	t.Setenv("GODEBUG", "x509sha1=1")
    
    	for _, test := range verifyTests {
    		t.Run(test.name, func(t *testing.T) {
    			testVerify(t, test, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	re := regexp.MustCompile(`[vV]ersion +(\d+)([.]\d+)?([.]\d+)?`)
    	matches := re.FindSubmatch(out)
    	if matches == nil {
    		// Can't find version number; hope for the best.
    		return nil
    	}
    
    	major, err := strconv.Atoi(string(matches[1]))
    	if err != nil {
    		// Can't find version number; hope for the best.
    		return nil
    	}
    	const errmsg = "must have SWIG version >= 3.0.6"
    	if major < 3 {
    		return errors.New(errmsg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    func (i NonExportedFirst) nonexported() int { panic("wrong") }
    
    func TestIssue22073(t *testing.T) {
    	m := ValueOf(NonExportedFirst(0)).Method(0)
    
    	if got := m.Type().NumOut(); got != 0 {
    		t.Errorf("NumOut: got %v, want 0", got)
    	}
    
    	// Shouldn't panic.
    	m.Call(nil)
    }
    
    func TestMapIterNonEmptyMap(t *testing.T) {
    	m := map[string]int{"one": 1, "two": 2, "three": 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top