Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for IsSkip (0.13 sec)

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

    }
    
    // RunPreFilterPlugins runs the set of configured PreFilter plugins. It returns
    // *Status and its code is set to non-success if any of the plugins returns
    // anything but Success/Skip.
    // When it returns Skip status, returned PreFilterResult and other fields in status are just ignored,
    // and coupled Filter plugin/PreFilterExtensions() will be skipped in this scheduling cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		expectedErr    bool
    	}{
    		"skip-deletes": {
    			pod:          podWithClaimTemplate,
    			oldObj:       allocatedClaim,
    			newObj:       nil,
    			expectedHint: framework.QueueSkip,
    		},
    		"backoff-wrong-new-object": {
    			pod:         podWithClaimTemplate,
    			newObj:      "not-a-claim",
    			expectedErr: true,
    		},
    		"skip-wrong-claim": {
    			pod: podWithClaimTemplate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    	left, err = msgp.Skip(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    }
    
    func BenchmarkMarshalMsgBaseOptions(b *testing.B) {
    	v := BaseOptions{}
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
  4. cmd/bucket-stats_gen.go

    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "QueueStats")
    						return
    					}
    				}
    			}
    		case "ProxyStats":
    			err = z.ProxyStats.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "ProxyStats")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    		fn:      fn,
    	})
    }
    
    type registerTestOpt interface {
    	isRegisterTestOpt()
    }
    
    // rtSkipFunc is a registerTest option that runs a skip check function before
    // running the test.
    type rtSkipFunc struct {
    	skip func(*distTest) (string, bool) // Return message, true to skip the test
    }
    
    func (rtSkipFunc) isRegisterTestOpt() {}
    
    // registerTest registers a test that runs the given goTest.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

      func.return %0 : tensor<i32>
    }
    
    // CHECK-SKIP-CPU: "tfl.while"
    // CHECK-SKIP-CPU:   ^bb0(%[[ARG0:.*]]: tensor<i32>):
    // CHECK-SKIP-CPU:     "tfl.yield"(%[[ARG0]]) : (tensor<i32>) -> ()
    // CHECK-SKIP-CPU: }, {
    // CHECK-SKIP-CPU:   ^bb0(%[[ARG1:.*]]: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. src/testing/testing.go

    	}
    
    	return raceErrors
    }
    
    // callerName gives the function name (qualified with a package path)
    // for the caller after skip frames (where 0 means the current function).
    func callerName(skip int) string {
    	var pc [1]uintptr
    	n := runtime.Callers(skip+2, pc[:]) // skip + runtime.Callers + callerName
    	if n == 0 {
    		panic("testing: zero callers found")
    	}
    	return pcToName(pc[0])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    		return
    	}
    	if skip > maxSkip {
    		print("requested skip=", skip)
    		throw("invalid skip value")
    	}
    	gp := getg()
    	mp := acquirem() // we must not be preempted while accessing profstack
    
    	nstk := 1
    	if tracefpunwindoff() || gp.m.hasCgoOnStack() {
    		mp.profStack[0] = logicalStackSentinel
    		if gp.m.curg == nil || gp.m.curg == gp {
    			nstk = callers(skip, mp.profStack[1:])
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. cmd/bucket-replication-utils_gen.go

    						}
    					default:
    						err = dc.Skip()
    						if err != nil {
    							err = msgp.WrapError(err, "Entries", za0001)
    							return
    						}
    					}
    				}
    				z.Entries[za0001] = za0002
    			}
    		case "v":
    			z.Version, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Version")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    	skip := func(oi ObjectInfo) (ok bool) {
    		if r.Flags.Filter.OlderThan > 0 && time.Since(oi.ModTime) < r.Flags.Filter.OlderThan {
    			// skip all objects that are newer than specified older duration
    			return true
    		}
    
    		if r.Flags.Filter.NewerThan > 0 && time.Since(oi.ModTime) >= r.Flags.Filter.NewerThan {
    			// skip all objects that are older than specified newer duration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top