Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 285 for OTHER (0.11 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

       * predicate. The returned multimap is a live view of {@code unfiltered}; changes to one affect
       * the other.
       *
       * <p>The resulting multimap's views have iterators that don't support {@code remove()}, but all
       * other methods are supported by the multimap and its views. When adding a key that doesn't
       * satisfy the predicate, the multimap's {@code put()}, {@code putAll()}, and {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Multimaps.java

       * predicate. The returned multimap is a live view of {@code unfiltered}; changes to one affect
       * the other.
       *
       * <p>The resulting multimap's views have iterators that don't support {@code remove()}, but all
       * other methods are supported by the multimap and its views. When adding a key that doesn't
       * satisfy the predicate, the multimap's {@code put()}, {@code putAll()}, and {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    }
    
    // takeAll removes all spans from other and inserts them at the front
    // of list.
    func (list *mSpanList) takeAll(other *mSpanList) {
    	if other.isEmpty() {
    		return
    	}
    
    	// Reparent everything in other to list.
    	for s := other.first; s != nil; s = s.next {
    		s.list = list
    	}
    
    	// Concatenate the lists.
    	if list.isEmpty() {
    		*list = *other
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    	}
    	got, _ := endpoints.queue.Get()
    	if e, a := ns+"/foo", got; e != a {
    		t.Errorf("Expected %v, got %v", e, a)
    	}
    }
    
    func TestSyncEndpointsProtocolTCP(t *testing.T) {
    	ns := "other"
    	testServer, endpointsHandler := makeTestServer(t, ns)
    	defer testServer.Close()
    	tCtx := ktesting.Init(t)
    	endpoints := newController(tCtx, testServer.URL, 0*time.Second)
    	endpoints.endpointsStore.Add(&v1.Endpoints{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Futures.java

       * input future and that of the future returned by the chain function. That is, if the returned
       * {@code Future} is cancelled, it will attempt to cancel the other two, and if either of the
       * other two is cancelled, the returned {@code Future} will receive a callback in which it will
       * attempt to cancel itself.
       *
       * @param input The future to transform
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/types.go

    	// Each variable is defined as a named CEL expression.
    	// The variables defined here will be available under `variables` in other expressions of the policy
    	// except MatchConditions because MatchConditions are evaluated before the rest of the policy.
    	//
    	// The expression of a variable can refer to other variables defined earlier in the list but not those after.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

       * input future and that of the future returned by the chain function. That is, if the returned
       * {@code Future} is cancelled, it will attempt to cancel the other two, and if either of the
       * other two is cancelled, the returned {@code Future} will receive a callback in which it will
       * attempt to cancel itself.
       *
       * @param input The future to transform
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	// unreserveBeforePreBind, if set, triggers a call to Unreserve
    	// before PreBind, as if the some other PreBind plugin had failed.
    	unreserveBeforePreBind *result
    }
    
    // prepare contains changes for objects in the API server.
    // Those changes are applied before running the steps. This can
    // be used to simulate concurrent changes by some other entities
    // like a resource driver.
    type prepare struct {
    	filter     change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    In other words, you can only use one or the other in Groovy for any given method.
    
    ==== Calling Kotlin from Groovy
    
    To call a Kotlin function that has named arguments from Groovy, just use a normal method call with positional parameters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // platforms.  They are subject to change without notice.  DO NOT USE
    // THEM IN USER CODE.
    //
    // This file is fundamental to Google Test.  All other Google Test source
    // files are expected to #include this.  Therefore, it cannot #include
    // any other Google Test header.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top