Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 466 for Avery (0.05 sec)

  1. src/cmd/trace/gstate.go

    	// of picking up stack traces, since the parser doesn't provide
    	// a stack for every state transition event.
    	lastStopStack trace.Stack
    
    	// activeRanges is the set of all active ranges on the goroutine.
    	activeRanges map[string]activeRange
    
    	// completedRanges is a list of ranges that completed since before the
    	// goroutine stopped executing. These are flushed on every stop or block.
    	completedRanges []completedRange
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    		return nil, err
    	}
    	return pkgs, nil
    }
    
    func TestDependencies(t *testing.T) {
    	if !testenv.HasSrc() {
    		// Tests run in a limited file system and we do not
    		// provide access to every source file.
    		t.Skipf("skipping on %s/%s, missing full GOROOT", runtime.GOOS, runtime.GOARCH)
    	}
    
    	ctxt := Default
    	all, err := listStdPkgs(ctxt.GOROOT)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    		} else {
    			// We haven't accumulated enough total precise
    			// mass yet to even reach our goal, so keep
    			// accumulating.
    			acc.bound = 1
    		}
    		// It's not worth checking percentiles every time, so
    		// just keep accumulating this band.
    		return false
    	}
    
    	// If we've found enough 0 utilizations, we can stop immediately.
    	return len(acc.wHeap) == acc.nWorst && acc.wHeap[0].MutatorUtil == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

              ImmutableSet.of(
                  sun.misc.Unsafe.class.getName(), AtomicReferenceFieldUpdater.class.getName()));
    
      public static TestSuite suite() {
        // we create a test suite containing a test for every AbstractFutureTest test method and we
        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

        if (!var_ptr) {
          // If no value in session, then just skip this variable.
          // This can happen if the variable is not saved in checkpoint.
          // For example, when the variable is created on every call.
          continue;
        }
        tensorflow::core::RefCountPtr<tensorflow::Var> var(var_ptr);
        auto* tensor = var_ptr->tensor();
    
        InitializeVariable(var_op, tensor, session_init_func, builder);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

              ImmutableSet.of(
                  sun.misc.Unsafe.class.getName(), AtomicReferenceFieldUpdater.class.getName()));
    
      public static TestSuite suite() {
        // we create a test suite containing a test for every AbstractFutureTest test method and we
        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashSet.java

     * than {@code size()}. Furthermore, this structure only depends on a fixed number of arrays; {@code
     * add(x)} operations <i>do not</i> create objects for the garbage collector to deal with, and for
     * every element added, the garbage collector will have to traverse {@code 1.5} references on
     * average, in the marking phase, not {@code 5.0} as in {@code java.util.HashSet}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/test2json/main.go

    //	bench  - the benchmark printed log output but did not fail
    //	fail   - the test or benchmark failed
    //	output - the test printed output
    //	skip   - the test was skipped or the package contained no tests
    //
    // Every JSON stream begins with a "start" event.
    //
    // The Package field, if present, specifies the package being tested.
    // When the go command runs parallel tests in -json mode, events from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/unique/handle.go

    	// to escape the argument, and using a type-specific map allows us to avoid that where
    	// possible (for example, for strings and plain-ol'-data structs). We also get the
    	// benefit of not cramming every different type into a single map, but that's certainly
    	// not enough to outweigh the cost of two map lookups. What is worth it though, is saving
    	// on those allocations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/net.go

    		return err
    	}
    	return nil
    }
    
    // syncHostIPSets is called after the host node ipset has been created (or found + flushed)
    // during initial snapshot creation, it will insert every snapshotted pod's IP into the set.
    //
    // The set does not allow dupes (obviously, that would be undefined) - but in the real world due to misconfigured
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top