Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,026 for IsSkip (0.8 sec)

  1. cmd/batch-rotate_gen.go

    				err = msgp.WrapError(err, "Key")
    				return
    			}
    		case "Context":
    			z.Context, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Context")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z BatchJobKeyRotateEncryption) EncodeMsg(en *msgp.Writer) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  2. pkg/test/framework/testcontext.go

    	CreateTmpDirectoryOrFail(prefix string) string
    
    	// SkipDumping will skip dumping debug logs/configs/etc for this scope only (child scopes are not skipped).
    	SkipDumping()
    
    	// Methods for interacting with the underlying *testing.T.
    
    	Error(args ...any)
    	Errorf(format string, args ...any)
    	Failed() bool
    	Name() string
    	Skip(args ...any)
    	SkipNow()
    	Skipf(format string, args ...any)
    	Skipped() bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. cmd/metacache-stream.go

    			r.err = err
    			return res, err
    		}
    		if err = r.mr.Skip(); err != nil {
    			if err == io.EOF {
    				err = io.ErrUnexpectedEOF
    			}
    			r.err = err
    			return res, err
    		}
    		res = append(res, name)
    	}
    	return res, nil
    }
    
    // skip n entries on the input stream.
    // If there are less entries left io.EOF is returned.
    func (r *metacacheReader) skip(n int) error {
    	r.checkInit()
    	if r.err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. cmd/batch-expire_gen.go

    					if err != nil {
    						err = msgp.WrapError(err, "Purge", "RetainVersions")
    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Purge")
    						return
    					}
    				}
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

        if (!predecessors.empty() && !IsEmbeddingOp(&cluster_op)) {
          bool skip = false;
          for (Operation* predecessor : llvm::reverse(predecessors)) {
            if (IsEmbeddingOp(predecessor)) continue;
            skip = !head_outside_compiled_ops.contains(predecessor);
            break;
          }
          if (skip) continue;
        }
    
        auto walk_result = cluster_op.walk([&](Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    	// if we pass the test. This is to ensure that if the behavior changes, we still capture it; the skip
    	// just ensures we notice a test is wrong
    	Skip string
    	t    test.Failer
    }
    
    func (r Result) Matches(t *testing.T, want Result) {
    	t.Helper()
    	r.StrictMatch = want.StrictMatch // to make diff pass
    	r.Skip = want.Skip               // to make diff pass
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate_value.go

    		}
    		if !found {
    			scope.Debugf("path %s not found in helm Value.yaml tree, skip mapping.", inPath)
    			continue
    		}
    
    		if mstr, ok := m.(string); ok && mstr == "" {
    			scope.Debugf("path %s is empty string, skip mapping.", inPath)
    			continue
    		}
    		// Zero int values are due to proto3 compiling to scalars rather than ptrs. Skip these because values of 0 are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. cmd/batch-rotate.go

    		if r.Flags.Filter.OlderThan > 0 && time.Since(info.ModTime) < r.Flags.Filter.OlderThan {
    			// skip all objects that are newer than specified older duration
    			return false
    		}
    
    		if r.Flags.Filter.NewerThan > 0 && time.Since(info.ModTime) >= r.Flags.Filter.NewerThan {
    			// skip all objects that are older than specified newer duration
    			return false
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    			},
    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 0}, {Name: "node3", Score: 0}},
    		},
    		{
    			// PreScore returns Skip.
    			name: "Skip is returned in PreScore when NodeAffinity is nil",
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: map[string]string{},
    				},
    			},
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  10. src/testing/sub_test.go

    ^V--- PASS: chatty with recursion and json/#00/#00 (N.NNs)
    ^V=== NAME  chatty with recursion and json/#00
    ^V=== RUN   chatty with recursion and json/#00/#01
        sub_test.go:NNN: skip
    ^V--- SKIP: chatty with recursion and json/#00/#01 (N.NNs)
    ^V=== NAME  chatty with recursion and json/#00
    ^V=== RUN   chatty with recursion and json/#00/#02
        sub_test.go:NNN: fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
Back to top