Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for consuming (0.45 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// 2) the size of the channels are set to 10 for the watcher
    	// 3) if the test is cpu-starved and the internal goroutine is not picking
    	//    up these events from the channel, after consuming the whole time
    	//    budget (defaulted to 100ms) on waiting, we will simply close the watch,
    	//    which will cause the test failure
    	// Using fakeTimeBudget gives us always a budget to wait and have a test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		})
    	})
    }
    
    func TestLabelRace(t *testing.T) {
    	testenv.MustHaveParallelism(t)
    	// Test the race detector annotations for synchronization
    	// between setting labels and consuming them from the
    	// profile.
    	matches := matchAndAvoidStacks(stackContainsLabeled, []string{"runtime/pprof.cpuHogger;key=value"}, nil)
    	testCPUProfile(t, matches, func(dur time.Duration) {
    		start := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This can lead to confusing circular dependency graphs, as the configuration being resolved is used for two different purposes.
    
    To avoid this problem, plugins should mark all resolvable configurations as `canBeConsumed=false` or use the `resolvable(String)` configuration factory method when creating configurations meant for resolution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    			} else {
    				p.syntaxError("non-declaration statement outside function body")
    			}
    			p.advance(_Import, _Const, _Type, _Var, _Func)
    			continue
    		}
    
    		// Reset p.pragma BEFORE advancing to the next token (consuming ';')
    		// since comments before may set pragmas for the next function decl.
    		p.clearPragma()
    
    		if p.tok != _EOF && !p.got(_Semi) {
    			p.syntaxError("after top level declaration")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	nfile := r.NFile()
    	unit.FileTable = make([]string, nfile)
    	for i := range unit.FileTable {
    		unit.FileTable[i] = r.File(i)
    	}
    
    	l.addObj(lib.Pkg, or)
    
    	// The caller expects us consuming all the data
    	f.MustSeek(length, io.SeekCurrent)
    
    	return r.Fingerprint()
    }
    
    // Holds the loader along with temporary states for loading symbols.
    type loadState struct {
    	l            *Loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            }
            message += " ";
          }
          if (shouldShowExtraNanos) {
            message += overWaitLeftoverNanos + " nanoseconds ";
          }
    
          message += "delay)";
        }
        // It's confusing to see a completed future in a timeout message; if isDone() returns false,
        // then we know it must have given a pending toString value earlier. If not, then the future
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            }
            message += " ";
          }
          if (shouldShowExtraNanos) {
            message += overWaitLeftoverNanos + " nanoseconds ";
          }
    
          message += "delay)";
        }
        // It's confusing to see a completed future in a timeout message; if isDone() returns false,
        // then we know it must have given a pending toString value earlier. If not, then the future
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. src/go/build/build.go

    			// Path segments starting with ~ on Unix are almost always
    			// users who have incorrectly quoted ~ while setting GOPATH,
    			// preventing it from expanding to $HOME.
    			// The situation is made more confusing by the fact that
    			// bash allows quoted ~ in $PATH (most shells do not).
    			// Do not get confused by this, and do not try to use the path.
    			// It does not exist, and printing errors about it confuses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/testing/testing.go

    		// is *not* associated with that test).
    		//
    		// Moreover, if c.output is non-empty it is important that this write be
    		// atomic with respect to the output of other tests, so that we don't end up
    		// with confusing '=== NAME' lines in the middle of our '--- PASS' block.
    		// Neither humans nor cmd/test2json can parse those easily.
    		// (See https://go.dev/issue/40771.)
    		//
    		// If test2json is used, we never flush to parent tests,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. configure.py

        print('WARNING: The NDK version in %s is %s, which is not '
              'supported by Bazel (officially supported versions: %s). Please use '
              'another version. Compiling Android targets may result in confusing '
              'errors.\n' %
              (android_ndk_home_path, ndk_version, _SUPPORTED_ANDROID_NDK_VERSIONS))
      write_action_env_to_bazelrc('ANDROID_NDK_VERSION', ndk_version)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
Back to top