Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for getNames (0.64 sec)

  1. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        checkArgument(
            Modifier.isStatic(declaringClass.getModifiers())
                || declaringClass.getEnclosingClass() == null,
            "Cannot test constructor of non-static inner class: %s",
            declaringClass.getName());
        Class<?>[] types = ctor.getParameterTypes();
        for (int nullIndex = 0; nullIndex < types.length; nullIndex++) {
          testConstructorParameter(ctor, nullIndex);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/NullPointerTester.java

        checkArgument(
            Modifier.isStatic(declaringClass.getModifiers())
                || declaringClass.getEnclosingClass() == null,
            "Cannot test constructor of non-static inner class: %s",
            declaringClass.getName());
        Class<?>[] types = ctor.getParameterTypes();
        for (int nullIndex = 0; nullIndex < types.length; nullIndex++) {
          testConstructorParameter(ctor, nullIndex);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            // Filter additional modules which are provided by the classpath
            Iterator<? extends File> it = classpath.iterator();
            while (it.hasNext() && !mutable.isEmpty()) {
                String name = it.next().getName();
                mutable.applicationClasspath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
                mutable.applicationModulepath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    for (ModuleResolveState state : resolveState.getModules()) {
                        if (state.getId().getGroup().equals(capability.getGroup()) && state.getId().getName().equals(capability.getName())) {
                            Collection<ComponentState> versions = state.getVersions();
                            implicitProvidersForCapability = Lists.newArrayListWithExpectedSize(versions.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

      if (device_costs_attr == nullptr) return std::nullopt;
    
      std::vector<float> device_costs(hardware_map.size(), -1.f);
    
      for (const auto& kv : hardware_map) {
        auto cost_attr = device_costs_attr.getNamed(kv.first);
        if (!cost_attr.has_value()) return std::nullopt;
        float cost = mlir::dyn_cast_or_null<mlir::FloatAttr>(cost_attr->getValue())
                         .getValueAsDouble();
        device_costs[kv.second] = cost;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            CompilerConfiguration configuration = new CompilerConfiguration();
            configuration.setScriptBaseClass(scriptBaseClass.getName());
            configuration.setTargetBytecode(CompilerConfiguration.JDK8);
            return configuration;
        }
    
        @Override
        public <T extends Script, M> CompiledScript<T, M> loadFromDir(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                throw new MavenException(e);
            }
            injector.getBindings().keySet().stream()
                    .filter(k -> k.getQualifier() != null)
                    .sorted(Comparator.comparing(k -> k.getRawType().getName()))
                    .distinct()
                    .forEach(key -> {
                        Class<?> clazz = key.getRawType();
                        Class<Object> itf = (clazz.isInterface()
                                ? null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

      OwningOpRef<mlir::ModuleOp> module = tflite::FlatBufferToMlir(
          serialized_model, &context, UnknownLoc::get(&context));
    
      // Apply quantization passes.
      PassManager pm((*module)->getName(), OpPassManager::Nesting::Implicit);
      quant::QuantizationSpecs quant_specs;
      quant_specs.inference_type = tflite::TflTypeToTfType(inference_type);
      quant_specs.weight_quantization = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getLogging()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Method <org.gradle.api.Project.getName()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta_test.go

    	assertResources := func(resp *discovery.DeltaDiscoveryResponse, names ...string) {
    		t.Helper()
    		got := slices.Map(resp.Resources, (*discovery.Resource).GetName)
    
    		assert.Equal(t, sets.New(got...), sets.New(names...).Merge(base))
    	}
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	addTestClientEndpoints(s.MemRegistry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top