Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for scouse (0.16 sec)

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

    							Score: 1,
    						},
    						{
    							Name:  scoreWithNormalizePlugin1,
    							Score: 4,
    						},
    						{
    							Name:  scoreWithNormalizePlugin2,
    							Score: 10,
    						},
    					},
    					TotalScore: 15,
    				},
    				{
    					Name: "node2",
    					Scores: []framework.PluginScore{
    						{
    							Name:  scorePlugin1,
    							Score: 1,
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if ps.last == '<' {
    		ps.writeByte(' ')
    	}
    
    	scopes := ps.scopes
    	ps.scopes = 0
    
    	ps.writeByte('<')
    	ps.printList(t.Args, ps.isEmpty)
    	if ps.last == '>' && !ps.llvmStyle {
    		// Avoid syntactic ambiguity in old versions of C++.
    		ps.writeByte(' ')
    	}
    	ps.writeByte('>')
    
    	ps.scopes = scopes
    }
    
    func (t *Template) Traverse(fn func(AST) bool) {
    	if fn(t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    					framework.NewStatus(framework.Error, "this score function shouldn't be executed because this plugin returned Skip in the PreScore"),
    				), "PreScore", "Score"),
    			},
    			extenders: nil,
    			want: []framework.NodePluginScores{
    				{Name: "node1", Scores: []framework.PluginScore{}},
    				{Name: "node2", Scores: []framework.PluginScore{}},
    			},
    		},
    		{
    			name: "the score from Image Locality plugin with image in all nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

            return lockedGetOrLoad(key, hash, loader);
          } catch (ExecutionException ee) {
            Throwable cause = ee.getCause();
            if (cause instanceof Error) {
              throw new ExecutionError((Error) cause);
            } else if (cause instanceof RuntimeException) {
              throw new UncheckedExecutionException(cause);
            }
            throw ee;
          } finally {
            postReadCleanup();
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

            return lockedGetOrLoad(key, hash, loader);
          } catch (ExecutionException ee) {
            Throwable cause = ee.getCause();
            if (cause instanceof Error) {
              throw new ExecutionError((Error) cause);
            } else if (cause instanceof RuntimeException) {
              throw new UncheckedExecutionException(cause);
            }
            throw ee;
          } finally {
            postReadCleanup();
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                },
                directExecutor());
        try {
          getDone(chainedFuture);
          fail();
        } catch (ExecutionException expected) {
          NullPointerException cause = (NullPointerException) expected.getCause();
          assertThat(cause)
              .hasMessageThat()
              .contains(
                  "AsyncFunction.apply returned null instead of a Future. "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                },
                directExecutor());
        try {
          getDone(chainedFuture);
          fail();
        } catch (ExecutionException expected) {
          NullPointerException cause = (NullPointerException) expected.getCause();
          assertThat(cause)
              .hasMessageThat()
              .contains(
                  "AsyncFunction.apply returned null instead of a Future. "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    )
    
    var (
    	errSRCannotJoin = SRError{
    		Cause: errors.New("this site is already configured for site-replication"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRDuplicateSites = SRError{
    		Cause: errors.New("duplicate sites provided for site-replication"),
    		Code:  ErrSiteReplicationInvalidRequest,
    	}
    	errSRSelfNotFound = SRError{
    		Cause: errors.New("none of the given sites correspond to the current one"),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    			// Unwrap the error so we don't show the pattern.
    			err = matchErr.Err
    		}
    	}
    
    	// Replace (possibly wrapped) *build.NoGoError with *load.NoGoError.
    	// The latter is more specific about the cause.
    	var nogoErr *build.NoGoError
    	if errors.As(err, &nogoErr) {
    		if p.Dir == "" && nogoErr.Dir != "" {
    			p.Dir = nogoErr.Dir
    		}
    		err = &NoGoError{Package: p}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    using the `tf.gather operation`.  For example:
      selected_indices = tf.image.non_max_suppression_v2(
          boxes, scores, max_output_size, iou_threshold, score_threshold)
      selected_boxes = tf.gather(boxes, selected_indices)
      }];
    
      let arguments = (ins
        TFL_FpTensor:$boxes,
        TFL_FpTensor:$scores,
        TFL_I32Tensor:$max_output_size,
        TFL_FpTensor:$iou_threshold,
        TFL_FpTensor:$score_threshold
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top