Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 131 for avoiding (0.17 sec)

  1. src/runtime/gc_test.go

    	}
    }
    
    func TestGcZombieReporting(t *testing.T) {
    	// This test is somewhat sensitive to how the allocator works.
    	// Pointers in zombies slice may cross-span, thus we
    	// add invalidptr=0 for avoiding the badPointer check.
    	// See issue https://golang.org/issues/49613/
    	got := runTestProg(t, "testprog", "GCZombie", "GODEBUG=invalidptr=0")
    	want := "found pointer to free object"
    	if !strings.Contains(got, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableMultimap.java

     * {@link Multimap} itself). Prefer subtypes such as {@link ImmutableSetMultimap} or {@link
     * ImmutableListMultimap}, which have well-defined {@link #equals} semantics, thus avoiding a common
     * source of bugs and confusion.
     *
     * <p><b>Note:</b> every {@link ImmutableMultimap} offers an {@link #inverse} view, so there is no
     * need for a distinct {@code ImmutableBiMultimap} type.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

          // without waiting for the user's executor to run our submitted Runnable. However, this can
          // interact poorly with the reentrancy-avoiding behavior of this executor - when the operation
          // before the cancelled future completes, it will synchronously complete both the newFuture
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableMultimap.java

     * {@link Multimap} itself). Prefer subtypes such as {@link ImmutableSetMultimap} or {@link
     * ImmutableListMultimap}, which have well-defined {@link #equals} semantics, thus avoiding a common
     * source of bugs and confusion.
     *
     * <p><b>Note:</b> every {@link ImmutableMultimap} offers an {@link #inverse} view, so there is no
     * need for a distinct {@code ImmutableBiMultimap} type.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     * <li>Excluding certain dependencies by name, group or both.
     *      More details about per-dependency exclusions can be found in
     *      docs for {@link org.gradle.api.artifacts.ModuleDependency#exclude(java.util.Map)}.</li>
     * <li>Avoiding transitive dependencies for certain dependency.</li>
     * </ul>
     *
     * <pre class='autoTestedWithDeprecations'>
     * plugins {
     *     id 'java' // so that I can declare 'implementation' dependencies
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/init.go

    	return apiclient.NewDryRunClient(dryRunGetter, os.Stdout), nil
    }
    
    // Client returns a Kubernetes client to be used by kubeadm.
    // This function is implemented as a singleton, thus avoiding to recreate the client when it is used by different phases.
    // Important. This function must be called after the admin.conf kubeconfig file is created.
    func (d *initData) Client() (clientset.Interface, error) {
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/writebarrier.go

    		bEnd.Likely = b.Likely
    		for _, e := range b.Succs {
    			bEnd.Succs = append(bEnd.Succs, e)
    			e.b.Preds[e.i].b = bEnd
    		}
    
    		// set up control flow for write barrier test
    		// load word, test word, avoiding partial register write from load byte.
    		cfgtypes := &f.Config.Types
    		flag := b.NewValue2(pos, OpLoad, cfgtypes.UInt32, wbaddr, mem)
    		flag = b.NewValue2(pos, OpNeq32, cfgtypes.Bool, flag, const0)
    		b.Kind = BlockIf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

       *     different kind of exception, that exception itself. To avoid hiding bugs and other
       *     unrecoverable errors, callers should prefer more specific types, avoiding {@code
       *     Throwable.class} in particular.
       * @param fallback the {@link Function} to be called if {@code input} fails with the expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. docs/en/docs/alternatives.md

    ## Intro
    
    **FastAPI** wouldn't exist if not for the previous work of others.
    
    There have been many tools created before that have helped inspire its creation.
    
    I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins, and tools.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    	// Only pass the expanding context to the new instance if their packages
    	// match. Since type reference cycles are only possible within a single
    	// package, this is sufficient for the purposes of short-circuiting cycles.
    	// Avoiding passing the context in other cases prevents unnecessary coupling
    	// of types across packages.
    	if expanding != nil && expanding.Obj().pkg == obj.pkg {
    		inst.ctxt = expanding.inst.ctxt
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top