Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for scouse (0.43 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. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against this step's exception. "This step's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@link Future#get()} on the {@link Future}
       *     underlying this step or, if {@code get()} throws a different kind of exception, that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    					ConsistentHostChecker,
    				),
    				PropagateResponse: func(req *http.Request, res *http.Response) {
    					scopes.Framework.Infof("invoking propagate response")
    					if res == nil {
    						scopes.Framework.Infof("no response")
    						return
    					}
    					if res.Cookies() == nil {
    						scopes.Framework.Infof("no cookies")
    						return
    					}
    					var sessionCookie *http.Cookie
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top