Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 149 for METHOD (0.23 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        assertThat(index).isNotEqualTo(0);
    
        // Above our method should be the call to get(). Don't assert on the class
        // because it could be some superclass.
        assertThat(e.getStackTrace()[index - 1].getMethodName()).isEqualTo("get");
      }
    
      private static int findStackFrame(ExecutionException e, String clazz, String method) {
        StackTraceElement[] elements = e.getStackTrace();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

            where:
            expression      | _
            "version"       | _
            "this.version"  | _
            "owner.version" | _
        }
    
        def "from-cache build fails when task action closure invokes a project method"() {
            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        println(file("broken"))
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

            return resolve(DependencyResolverRequest.build(
                    session, DependencyResolverRequest.RequestType.RESOLVE, dependencies, scope));
        }
    
        /**
         * This method collects, flattens and resolves the dependencies.
         *
         * @param request the request to resolve
         * @return the result of the resolution
         * @throws DependencyResolverException
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            title = processCreator.replace("command", varInitializer.description)
        }
    
         def "calling an unrelated method is allowed in static groovy build script"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            generateClassesWithClashingMethods()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pkg/kube/krt/informer.go

    // NewInformer creates a Collection[I] sourced from
    // the results of kube.Client querying resources of type I
    // from the API Server.
    //
    // Resources must have their GVR and GVK registered in the
    // kube.Client before this method is called, otherwise
    // NewInformer will panic.
    func NewInformer[I controllers.ComparableObject](c kube.Client, opts ...CollectionOption) Collection[I] {
    	return NewInformerFiltered[I](c, kubetypes.Filter{}, opts...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	resourceVersion uint64
    
    	// ResourceVersion of the last list result (populated via Replace() method).
    	listResourceVersion uint64
    
    	// This handler is run at the end of every successful Replace() method.
    	onReplace func()
    
    	// This handler is run at the end of every Add/Update/Delete method
    	// and additionally gets the previous value of the object.
    	eventHandler func(*watchCacheEvent)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                Interpolator interpolator)
                throws ExtensionResolutionException {
            try {
                /* TODO: Enhance the PluginDependenciesResolver to provide a
                 * resolveCoreExtension method which uses a CoreExtension
                 * object instead of a Plugin as this makes no sense.
                 */
                Plugin plugin = Plugin.newBuilder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    	// it is safe to release the lock after the method finishes because we don't require
    	// any atomicity between the call to the method and further calls that actually get the events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. cmd/batch-expire.go

    		// Apply filter to find the matching rule to apply expiry
    		// actions accordingly.
    		// nolint:gocritic
    		if result.Item.IsLatest {
    			// send down filtered entries to be deleted using
    			// DeleteObjects method
    			if len(toDel) > 10 { // batch up to 10 objects/versions to be expired simultaneously.
    				xfer := make([]expireObjInfo, len(toDel))
    				copy(xfer, toDel)
    
    				var done bool
    				select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	rest "k8s.io/client-go/rest"
    	consistencydetector "k8s.io/client-go/util/consistencydetector"
    	watchlist "k8s.io/client-go/util/watchlist"
    	"k8s.io/klog/v2"
    )
    
    // ExamplesGetter has a method to return a ExampleInterface.
    // A group's client should implement this interface.
    type ExamplesGetter interface {
    	Examples(namespace string) ExampleInterface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top