Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 288 for watcher (0.44 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // quantization method specifies what type of quantization to apply on the
    // matched quantizable units.
    // Next ID: 3
    message QuantizationSpec {
      // Configures matchers for identifying quantizable units. Matched quantizable
      // units will be quantized according to `method`.
      MatcherSpec matcher = 1;
    
      // Specifies how to quantize the matched quantizable units.
      Method method = 2;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        }
    
        private static class SelectedTestsFilter implements IMethodInterceptor {
    
            private final TestSelectionMatcher matcher;
    
            public SelectedTestsFilter(TestFilterSpec filter) {
                matcher = new TestSelectionMatcher(filter);
            }
    
            @Override
            public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/policyattachment_test.go

    			nsName := types.NamespacedName{Name: "policy1", Namespace: "default"}
    			matcher := tt.selection.ShouldAttachPolicy(mockKind, nsName, tt.policy)
    
    			if matcher != tt.expected {
    				t.Errorf("Expected %v, but got %v", tt.expected, matcher)
    			}
    		})
    	}
    }
    
    type mockPolicyTargetGetter struct {
    	targetRef  *v1beta1.PolicyTargetReference
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Platform.java

    @ElementTypesAreNonnullByDefault
    final class Platform {
      private static final PatternCompiler patternCompiler = loadPatternCompiler();
    
      private Platform() {}
    
      static CharMatcher precomputeCharMatcher(CharMatcher matcher) {
        return matcher.precomputedInternal();
      }
    
      static <T extends Enum<T>> Optional<T> getEnumIfPresent(Class<T> enumClass, String value) {
        WeakReference<? extends Enum<?>> ref = Enums.getEnumConstants(enumClass).get(value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Platform.java

      private static final PatternCompiler patternCompiler = loadPatternCompiler();
    
      private Platform() {}
    
      static CharMatcher precomputeCharMatcher(CharMatcher matcher) {
        return matcher.precomputedInternal();
      }
    
      static <T extends Enum<T>> Optional<T> getEnumIfPresent(Class<T> enumClass, String value) {
        WeakReference<? extends Enum<?>> ref = Enums.getEnumConstants(enumClass).get(value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "File system watchers for keeping the VFS up-to-date"
    
    dependencies {
        api(project(":snapshots"))
        api(project(":build-operations"))
        api(project(":files"))
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
        api(libs.nativePlatform)
        api(libs.nativePlatformFileEvents)
        api(libs.slf4jApi)
        implementation(project(":functional"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

       * in Android) requires a successful match in order to generate a {@code MatchResult}:
       * http://goo.gl/5VQFmC
       */
      private static MatchResult createMatchResult() {
        Matcher matcher = Pattern.compile(".").matcher("X");
        matcher.find();
        return matcher.toMatchResult();
      }
    
      private static final ClassToInstanceMap<Object> DEFAULTS =
          ImmutableClassToInstanceMap.builder()
              // primitives
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            def lines = text.readLines()
            def result = []
            lines.forEach { line ->
                def matcher = pattern.matcher(line)
                if (!matcher.matches()) {
                    return
                }
                result.add(new ClassDetails(matcher.group(1), matcher.group(2), matcher.group(3)))
            }
            return result
        }
    
        String instrument(String idExpr) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    	Labels       map[string]string   `json:"labels"`
    	Metadata     *model.NodeMetadata `json:"metadata,omitempty"`
    	Locality     *core.Locality      `json:"locality,omitempty"`
    	Watches      map[string][]string `json:"watches,omitempty"`
    }
    
    // AdsClients is collection of AdsClient connected to this Istiod.
    type AdsClients struct {
    	Total     int         `json:"totalClients"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. src/internal/trace/reader.go

    		r.cpuSamples = r.gen.cpuSamples
    
    		// Reset frontier.
    		for m, batches := range r.gen.batches {
    			bc := &batchCursor{m: m}
    			ok, err := bc.nextEvent(batches, r.gen.freq)
    			if err != nil {
    				return Event{}, err
    			}
    			if !ok {
    				// Turns out there aren't actually any events in these batches.
    				continue
    			}
    			r.frontier = heapInsert(r.frontier, bc)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top