Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for harmless (0.18 sec)

  1. CHANGELOG/CHANGELOG-1.26.md

    ## Changelog since v1.26.1
    
    ## Changes by Kind
    
    ### API Change
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    		}
    
    		if cover != nil {
    			if cfg.Experiment.CoverageRedesign {
    				// Here ptest needs to inherit the proper coverage mode (since
    				// it contains p's Go files), whereas pmain contains only
    				// test harness code (don't want to instrument it, and
    				// we don't want coverage hooks in the pkg init).
    				ptest.Internal.Cover.Mode = p.Internal.Cover.Mode
    				pmain.Internal.Cover.Mode = "testmain"
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    	b.Values = b.Values[:0]
    	idx := 0
    
    	// Clobber pointer slots in all dead variables at entry.
    	if b == lv.f.Entry {
    		for len(oldSched) > 0 && len(oldSched[0].Args) == 0 {
    			// Skip argless ops. We need to skip at least
    			// the lowered ClosurePtr op, because it
    			// really wants to be first. This will also
    			// skip ops like InitMem and SP, which are ok.
    			b.Values = append(b.Values, oldSched[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

    import org.apache.maven.model.Profile;
    import org.apache.maven.model.ReportPlugin;
    import org.apache.maven.model.ReportSet;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.project.harness.PomTestWrapper;
    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.eclipse.aether.internal.impl.SimpleLocalRepositoryManagerFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	fuzzTargets []InternalFuzzTarget
    	examples    []InternalExample
    
    	timer     *time.Timer
    	afterOnce sync.Once
    
    	numRun int
    
    	// value to pass to os.Exit, the outer test func main
    	// harness calls os.Exit with this code. See #34129.
    	exitCode int
    }
    
    // testDeps is an internal interface of functionality that is
    // passed into this package by a test's generated main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			},
    			"client CA bundle", "",
    		},
    		// this pair asserts we get errors about both client and server certs missing when in mutual mode
    		// and both are absent, but requires less rewriting of the testing harness than merging the cases
    		{
    			"mutual no certs",
    			&networking.ServerTLSSettings{
    				Mode:              networking.ServerTLSSettings_MUTUAL,
    				ServerCertificate: "",
    				PrivateKey:        "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    - In-tree GCE PD test cases no longer run in Kubernetes testing harness anymore (side effect of switching on CSI migration in 1.22). Please switch on the environment variable `ENABLE_STORAGE_GCE_PD_DRIVER` to `yes` if you need to run these tests. ([#109541](https://github.com/kubernetes/kubernetes/pull/109541), [@dim...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top