Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 212 for effects (0.16 sec)

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

        public @Nullable Object[] toArray() {
          synchronized (mutex) {
            return delegate().toArray();
          }
        }
    
        @Override
        @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
        public <T extends @Nullable Object> T[] toArray(T[] a) {
          synchronized (mutex) {
            return delegate().toArray(a);
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

        public @Nullable Object[] toArray() {
          synchronized (mutex) {
            return delegate().toArray();
          }
        }
    
        @Override
        @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
        public <T extends @Nullable Object> T[] toArray(T[] a) {
          synchronized (mutex) {
            return delegate().toArray(a);
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	for work.cycles.Load() == n+1 && sweepone() != ^uintptr(0) {
    		Gosched()
    	}
    
    	// Callers may assume that the heap profile reflects the
    	// just-completed cycle when this returns (historically this
    	// happened because this was a STW GC), but right now the
    	// profile still reflects mark termination N, not N+1.
    	//
    	// As soon as all of the sweep frees from cycle N+1 are done,
    	// we can go ahead and publish the heap profile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Test_SetNodeStatusUpdateNeededError expects the map nodesToUpdateStatusFor
    // to be empty if the SetNodeStatusUpdateNeeded is called on a node that
    // does not exist in the actual state of the world
    func Test_SetNodeStatusUpdateNeededError(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if err != nil {
    			return err
    		}
    
    		// Insert a sentinel property that we can probe to detect when the
    		// schema takes effect
    		sch := u.newSchema.DeepCopy()
    		if sch.Properties == nil {
    			sch.Properties = map[string]apiextensionsv1.JSONSchemaProps{}
    		}
    
    		uuidString := string(uuid.NewUUID())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    			wantSubsets: []string{"subset13", "subset14"},
    		},
    		// dr in the svc ns takes effect on proxy in root ns
    		{
    			proxyNs:     "istio-system",
    			serviceNs:   "test5",
    			host:        "api.test.com",
    			wantSubsets: []string{"subset5-0", "subset5-1"},
    		},
    		// dr in the svc ns takes effect on proxy in root ns
    		{
    			proxyNs:     "istio-system",
    			serviceNs:   "test6",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    module("org:c:1") {
                        module("org:a:2")
                    }
                }
            }
        }
    
        def 'order of dependency declaration does not effect transitive dependency versions'() {
            given:
            def foo11 = mavenRepo.module('org', 'foo', '1.1').publish()
            def foo12 = mavenRepo.module('org', 'foo', '1.2').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

     * for any {@link Object}. Also offers basic text processing methods based on this function.
     * Implementations are strongly encouraged to be side-effect-free and immutable.
     *
     * <p>Throughout the documentation of this class, the phrase "matching character" is used to mean
     * "any {@code char} value {@code c} for which {@code this.matches(c)} returns {@code true}".
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			newReqWaitCtxExpected: true,
    			reqWaitLimitExpected:  5 * time.Second, // from now
    		},
    		{
    			name:                    "context does not have any deadline, 'received at' is not set, default wait limit should be in effect from now",
    			defaultRequestWaitLimit: 15 * time.Second,
    			parent: func(time.Time) (context.Context, context.CancelFunc) {
    				return context.WithCancel(context.Background())
    			},
    			newReqWaitCtxExpected: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "x-kubernetes-preserve-unknown-fields": {
              "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.",
              "type": "boolean"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top