Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for iterNested (0.39 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker_test.go

    				t.Fatalf("unexpected error from requestInfo creation: %#v", err)
    			}
    
    			count := watchTracker.GetInterestedWatchCount(requestInfo)
    			if count != testCase.expected {
    				t.Errorf("unexpected interested watch count: %d, expected %d", count, testCase.expected)
    			}
    		})
    	}
    
    }
    
    func TestGetInterestedWatchCountWithIndex(t *testing.T) {
    	watchTracker := NewWatchTracker()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 14:02:51 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/InterceptScope.java

     */
    
    package org.gradle.internal.classpath.intercept;
    
    import java.util.Objects;
    
    /**
     * A scope for the CallInterceptor. It defines what methods/properties or constructors the given
     * CallInterceptor is interested in. Use static methods to obtain instances of this class.
     */
    public abstract class InterceptScope {
    
        private enum CallType {
            METHOD("call method"),
            GET_PROPERTY("get property"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // which the pass is invoked contains any of the specified strings as a
    // substring. An empty list is interpreted as no restriction. The string filter
    // can be handy e.g. if one is only interested in a certain function or when
    // checking where a certain attribute gets lost. Note that we use a semicolon
    // instead of comma as the separator to allow strings that contain commas (which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    // number of objects for a given resource.
    type objectCountGetterFunc func(string) (int64, error)
    
    // watchCountGetterFunc represents a function that gets the total
    // number of watchers potentially interested in a given request.
    type watchCountGetterFunc func(*apirequest.RequestInfo) int
    
    // MaxSeatsFunc represents a function that returns the maximum seats
    // allowed for the work estimator for a given priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    4.  Code contributions require signing a Google CLA.
    
    API changes
    -----------
    
    We make changes to Guava's public [APIs][], including adding new APIs, very
    carefully. Because of this, if you're interested in seeing a new feature in
    Guava, the best approach is to create an [issue][] (or comment on an existing
    issue if there is one) requesting the feature and describing specific use cases
    for it.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. internal/dsync/dsync-client_test.go

    		TLSHandshakeTimeout:   15 * time.Second,
    		ExpectContinueTimeout: 15 * time.Second,
    		// Go net/http automatically unzip if content-type is
    		// gzip disable this feature, as we are always interested
    		// in raw stream.
    		DisableCompression: true,
    	}
    
    	return &ReconnectRESTClient{
    		u:    u,
    		rest: rest.NewClient(u, tr, nil),
    	}
    }
    
    // Close closes the underlying socket file descriptor.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:36:09 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

    import org.gradle.integtests.fixtures.resolve.ResolveTestFixture
    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    import spock.lang.Issue
    
    // Limit the combinations of tests since we're only interested in the consistency
    // behavior, not actual metadata
    @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
    @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. pkg/util/procfs/procfs_linux.go

    			}
    
    			// The bytes we read have '\0' as a separator for the command line
    			parts := bytes.SplitN(cmdline, []byte{0}, 2)
    			if len(parts) == 0 {
    				continue
    			}
    			// Split the command line itself we are interested in just the first part
    			exe := strings.FieldsFunc(string(parts[0]), func(c rune) bool {
    				return unicode.IsSpace(c) || c == ':'
    			})
    			if len(exe) == 0 {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/mergelocals_test.go

    	// a specific set of overlappings or frame offsets, this
    	// tests just verifies that there is a decent-sized clump of 4+ vars that
    	// get overlapped.
    	//
    	// The expected output blob we're interested might look like
    	// this (for amd64):
    	//
    	// =-= stack layout for ABC:
    	// 2: "p1" frameoff -8200 ...
    	// 3: "s" frameoff -8200 ...
    	// 4: "v2" frameoff -8200 ...
    	// 5: "v3" frameoff -8200 ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    	//
    	// (c) immediately when the bookmarkAfterResourceVersion wasn't confirmed
    	//     in this scenario the client have already seen (or is in the process of sending)
    	//     all initial data and is interested in seeing
    	//     a specific RV value (aka. the bookmarkAfterResourceVersion)
    	//     since we don't know when the cacher will see the RV we increase frequency
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top