Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,177 for returnedAt (0.92 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpecContainer.java

        /**
         * Defines a new dependency, based on a project path. The returned dependency can be mutated.
         *
         * @param path the project path
         *
         * @return a mutable dependency, added to this container
         */
        ProjectDependencySpecBuilder project(String path);
    
        /**
         * Defines a new dependency, based on a library name. The returned dependency can be mutated.
         *
         * @param name of the library
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    	if len(pvList) != len(expectedPVs) {
    		t.Errorf("ListPVs() returned %v PVs, expected %v", len(pvList), len(expectedPVs))
    	}
    	for _, pv := range pvList {
    		expectedPV, ok := expectedPVs[pv.Name]
    		if !ok {
    			t.Errorf("ListPVs() returned unexpected PV %q", pv.Name)
    		}
    		if expectedPV != pv {
    			t.Errorf("ListPVs() returned PV %p, expected %p", pv, expectedPV)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimap.java

       *
       * <p>Changes to the returned collection will update the underlying multimap, and vice versa.
       * However, <i>adding</i> to the returned collection is not possible.
       */
      Collection<V> values();
    
      /**
       * Returns a view collection of all key-value pairs contained in this multimap, as {@link Entry}
       * instances.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. src/net/main_conf_test.go

    	}
    	defer forceCgoDNS()()
    	order, _ := systemConf().hostLookupOrder(nil, "go.dev")
    	if order != hostLookupCgo {
    		t.Fatalf("hostLookupOrder returned: %v, want cgo", order)
    	}
    	order, _ = systemConf().addrLookupOrder(nil, "192.0.2.1")
    	if order != hostLookupCgo {
    		t.Fatalf("addrLookupOrder returned: %v, want cgo", order)
    	}
    	if systemConf().mustUseGoResolver(nil) {
    		t.Fatal("mustUseGoResolver = true, want false")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:29:27 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/lock_js.go

    	// It needs to be active when returning to JavaScript.
    	gp *g
    	// returned reports whether the event handler has returned.
    	// When all goroutines are idle and the event handler has returned,
    	// then g gets resumed and returns the execution to JavaScript.
    	returned bool
    }
    
    type timeoutEvent struct {
    	id int32
    	// The time when this timeout will be triggered.
    	time int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

         */
        Iterable<String> getTypeDescriptions();
    
        /**
         * Creates a (potentially) mutable view over this node's value. When this node is not mutable, an immutable view is returned instead.
         *
         * Callers should try to {@link ModelView#close()} the returned view when it is done with, allowing any internal cleanup to occur.
         *
         * Throws if this node can't be expressed as a mutable view of the requested type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    type result struct {
    	// object stores the response returned by the ResultFunc function
    	object runtime.Object
    	// err stores the error returned by the ResultFunc function
    	err error
    	// reason stores the reason from a panic thrown by the ResultFunc function
    	reason interface{}
    }
    
    // Return processes the result returned by a ResultFunc function
    func (r *result) Return() (runtime.Object, error) {
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * ClosingFuture)}.
         *
         * @param <V1> the type returned by the first future
         * @param <V2> the type returned by the second future
         * @param <V3> the type returned by the third future
         * @param <V4> the type returned by the fourth future
         * @param <V5> the type returned by the fifth future
         * @param <U> the type returned by the function
         */
        @FunctionalInterface
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting_test.go

    		lock.Lock()
    		defer lock.Unlock()
    		if !wr.Set(aval) {
    			t.Error("Set() returned false")
    		}
    	}()
    	clock.Run(nil)
    	expectGotValue(t, gots, aval)
    	goGetAndExpect(t, clock, counter, wr, gots, aval)
    	later := time.Now()
    	bval := &later
    	func() {
    		lock.Lock()
    		defer lock.Unlock()
    		if wr.Set(bval) {
    			t.Error("second Set() returned true")
    		}
    	}()
    	goGetAndExpect(t, clock, counter, wr, gots, aval)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationOverridesProvider.kt

         *
         * Unwraps substituted overridden symbols
         * (see [INTERSECTION_OVERRIDE][org.jetbrains.kotlin.analysis.api.symbols.KaSymbolOrigin.INTERSECTION_OVERRIDE] and [SUBSTITUTION_OVERRIDE][org.jetbrains.kotlin.analysis.api.symbols.KaSymbolOrigin.SUBSTITUTION_OVERRIDE]),
         * so such fake declaration won't be returned.
         *
         * @see getDirectlyOverriddenSymbols
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top