Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for preClean (0.19 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // ResourceBody.
    //
    // lenOff is the offset of the ResourceHeader.Length field in msg.
    //
    // preLen is the length that msg was before the ResourceBody was packed.
    func (h *ResourceHeader) fixLen(msg []byte, lenOff int, preLen int) error {
    	conLen := len(msg) - preLen
    	if conLen > int(^uint16(0)) {
    		return errResTooLong
    	}
    
    	// Fill in the length now that we know how long the content is.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java

            // The two phases below are really for future expansion, some would say they lack a drink
            // The point being that they do not really have to match the "real" stuff,
            List<String> stubCleanCycle = Arrays.asList(PRE_CLEAN.getPhase(), CLEAN.getPhase(), POST_CLEAN.getPhase());
    
            List<String> stubSiteCycle =
                    Arrays.asList(PRE_SITE.getPhase(), SITE.getPhase(), POST_SITE.getPhase(), SITE_DEPLOY.getPhase());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/testdata/harness.go

    		fw.reset(i)
    		err := testf(fw)
    		if err == nil {
    			log.Fatalf("no error from write %d tag %s", i, tag)
    		}
    	}
    }
    
    func postClear() int {
    	return 42
    }
    
    func preClear() int {
    	return 42
    }
    
    // This test is designed to ensure that write errors are properly
    // handled by the code that writes out coverage data. It repeatedly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

    /**
     */
    public class LifecycleExecutionPlanCalculatorStub implements LifecycleExecutionPlanCalculator {
        // clean
    
        public static final MojoDescriptor PRE_CLEAN = createMojoDescriptor("pre-clean");
    
        public static final MojoDescriptor CLEAN = createMojoDescriptor("clean");
    
        public static final MojoDescriptor POST_CLEAN = createMojoDescriptor("post-clean");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/emitdata_test.go

    			setGoCoverDir, rdir, edir)
    		if err != nil {
    			t.Logf("%s", output)
    			t.Fatalf("running 'harness -tp %s': %v", tp, err)
    		}
    		want := []string{tp, "postClear"}
    		avoid := []string{"preClear", "main", "final"}
    		if msg := testForSpecificFunctions(t, edir, want, avoid); msg != "" {
    			t.Logf("%s", output)
    			t.Errorf("coverage data from %q output match failed: %s", tp, msg)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. test-site/activator-launch-1.3.2.jar

    private void gotoPosWritable(int, int, int); private static void zeroLeft(Object[], int); private static void zeroRight(Object[], int); private static Object[] copyLeft(Object[], int); private static Object[] copyRight(Object[], int); private void preClean(int); private static int requiredDepth(int); public void Vector(int, int, int); } scala/collection/immutable/Vector$VectorReusableCBF.class package scala.collection.immutable; public final synchronized class Vector$VectorReusableCBF extends scal...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top