Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,266 for getBase (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics_test.go

    				keyIDHash:       getHash(keyID),
    				apiServerIDHash: getHash(apiServerID),
    			}
    			RecordKeyIDFromStatus(key.providerName, keyID, apiServerID)
    		}()
    	}
    	wg.Wait()
    
    	validMetrics := 0
    	metricFamilies, err := legacyregistry.DefaultGatherer.Gather()
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, family := range metricFamilies {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

                throw new IllegalArgumentException("Could not instantiate annotation processor '" + processorClass.getName() + "'", unwrapCause(e));
            }
        }
    
        private Throwable unwrapCause(Throwable throwable) {
            if (throwable instanceof InvocationTargetException) {
                return throwable.getCause();
            }
            return throwable;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                if (throwable == null) {
                    out.nullValue();
                } else if (throwable.getMessage() == null && throwable.getCause() != null) {
                    write(out, throwable.getCause());
                } else {
                    out.beginObject();
                    if (throwable.getMessage() != null) {
                        out.name("message");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

                return instantiator.newInstance(type);
            } catch (ObjectInstantiationException e) {
                throw new PluginInstantiationException(String.format("Could not create plugin of type '%s'.", type.getSimpleName()), e.getCause());
            }
        }
    
        @Override
        public <P extends Plugin> P addImperativePlugin(PluginImplementation<P> plugin) {
            doApply(plugin);
            Class<? extends P> pluginClass = plugin.asClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            final String thumbnailId = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldId(), String.class);
            final Tuple3<String, String, String> task = new Tuple3<>(getName(), thumbnailId, path);
            if (logger.isDebugEnabled()) {
                logger.debug("Create thumbnail task: {}", task);
            }
            return task;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Types.java

          String methodName = method.getName();
          Method typeVariableMethod = typeVariableMethods.get(methodName);
          if (typeVariableMethod == null) {
            throw new UnsupportedOperationException(methodName);
          } else {
            try {
              return typeVariableMethod.invoke(typeVariableImpl, args);
            } catch (InvocationTargetException e) {
              throw e.getCause();
            }
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/Types.java

          String methodName = method.getName();
          Method typeVariableMethod = typeVariableMethods.get(methodName);
          if (typeVariableMethod == null) {
            throw new UnsupportedOperationException(methodName);
          } else {
            try {
              return typeVariableMethod.invoke(typeVariableImpl, args);
            } catch (InvocationTargetException e) {
              throw e.getCause();
            }
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            if (enclosingClass == null) {
                return null;
            }
            for (Field field : cls.getDeclaredFields()) {
                if (!field.isSynthetic() || !field.getName().startsWith("this$") || field.getType() != enclosingClass) {
                    continue;
                }
                field.setAccessible(true);
                try {
                    return field.get(innerClassInstance);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

                throw new DuplicateParameterException(parameter.getName()
                        + " has been declared multiple times in mojo with goal: " + getGoal() + " (implementation: "
                        + getImplementation() + ")");
            }
    
            parameters.add(parameter);
        }
    
        /**
         * @return the list parameters as a Map (keyed by {@link Parameter#getName()}) that is built from
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/TimeoutTest.java

                    for ( Thread t : threadsAfter ) {
                        if ( t.getName().startsWith("Transport") ) {
                            leaked.add(t);
                        }
                    }
                    assertTrue("Leaked transport threads, have " + leaked, leaked.size() == 0);
                    throw (ConnectionTimeoutException) e.getCause();
                }
                throw e;
            }
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.4K bytes
    - Viewed (0)
Back to top