Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 563 for SetName (0.17 sec)

  1. pkg/scheduler/util/assumecache/assume_cache_test.go

    	// Restore object.
    	cache.Restore(oldObj.GetName())
    	verify(ktesting.WithStep(tCtx, "after second Restore"), cache, oldObj.GetName(), oldObj, oldObj)
    }
    
    func TestEvents(t *testing.T) {
    	tCtx, cache, informer := newTest(t)
    
    	oldObj := makeObj("pvc1", "5", "")
    	newObj := makeObj("pvc1", "6", "")
    	key := oldObj.GetName()
    
    	// Add old object to cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationTransformUtils.java

            return input.getName().equals(DEPENDENCY_ANALYSIS_FILE_NAME);
        }
    
        public static boolean isTypeHierarchyAnalysisFile(File input) {
            return input.getName().equals(TYPE_HIERARCHY_ANALYSIS_FILE_NAME);
        }
    
        public static boolean isInstrumentationMarkerFile(File input) {
            return input.getName().equals(INSTRUMENTATION_CLASSPATH_MARKER.getFileName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:06:06 UTC 2024
    - 3.1K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

         * @param methodArgs
         *            引数の並び
         */
        public ConstructorNotFoundRuntimeException(final Class<?> targetClass, final Object[] methodArgs) {
            super("ECL0048", asArray(targetClass.getName(), getSignature(methodArgs)));
            this.targetClass = targetClass;
            this.methodArgs = methodArgs;
            paramTypes = null;
        }
    
        /**
         * {@link ConstructorNotFoundRuntimeException}を作成します。
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/ProviderMigrationArchitectureTest.java

            String propertyNameFromGetter = accessorType.propertyNameFor(input.getName());
            return input.getOwner().getAllMethods().stream()
                .filter(method -> PropertyAccessorType.fromName(method.getName()) == PropertyAccessorType.SETTER)
                .anyMatch(method -> PropertyAccessorType.SETTER.propertyNameFor(method.getName()).equals(propertyNameFromGetter));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/EnumValueSnapshot.java

            this.className = value.getDeclaringClass().getName();
            this.name = value.name();
        }
    
        public EnumValueSnapshot(String className, String name) {
            this.className = className;
            this.name = name;
        }
    
        public String getClassName() {
            return className;
        }
    
        public String getName() {
            return name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:43 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvedDependency.java

        }
    
        @Override
        public String getName() {
            return String.format("%s:%s:%s", moduleVersionId.getGroup(), moduleVersionId.getName(), moduleVersionId.getVersion());
        }
    
        @Override
        public String getModuleGroup() {
            return moduleVersionId.getGroup();
        }
    
        @Override
        public String getModuleName() {
            return moduleVersionId.getName();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/io/ClassTraversalTest.java

            count = 0;
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testForEachJarFile() throws Exception {
            final String classFilePath = TestCase.class.getName().replace('.', '/') + ".class";
            final URL classURL = ResourceUtil.getResource(classFilePath);
            final JarURLConnection con = (JarURLConnection) classURL.openConnection();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

      // List of supported composites to represent using CustomOp.
      return llvm::is_contained(
          {"odml.update_kv_cache", "odml.scaled_dot_product_attention"},
          op.getName());
    }
    
    bool IsKVCacheCompositeOp(::mlir::stablehlo::CompositeOp op) {
      return op.getName() == "odml.update_kv_cache";
    }
    
    TFL::ConstBytesAttr CustomOption(OpBuilder* builder,
                                     const std::string& content) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/JobHelper.java

                        logger.info("Starting Job {}:{}", id, scheduledJob.getName());
                        final String cronExpression = scheduledJob.getCronExpression();
                        job.reschedule(cronExpression, op -> op.changeNoticeLogToDebug().params(paramsOp));
                    } else {
                        logger.info("Inactive Job {}:{}", id, scheduledJob.getName());
                        job.becomeNonCron();
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/script/AbstractScriptEngine.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public abstract class AbstractScriptEngine implements ScriptEngine {
    
        public void register() {
            ComponentUtil.getScriptEngineFactory().add(getName(), this);
        }
    
        protected abstract String getName();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 920 bytes
    - Viewed (0)
Back to top