Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 816 for getNames (0.19 sec)

  1. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private static boolean isAnyEnter(Method method) {
        return method.getName().startsWith("enter") || method.getName().startsWith("tryEnter");
      }
    
      /** Identifies just tryEnterXxx methods (a subset of {@link #isAnyEnter}), which never block. */
      private static boolean isTryEnter(Method method) {
        return method.getName().startsWith("tryEnter");
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatableSerializerRegistry.java

            @Override
            protected void serialize(Encoder encoder, AttributeDefinitionSnapshot value) throws Exception {
                encoder.writeString(value.getValue().getType().getName());
                encoder.writeString(value.getValue().getName());
            }
    
            @Override
            protected AttributeDefinitionSnapshot deserialize(Decoder decoder) throws Exception {
                String className = decoder.readString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

            final Map<String, String> item = new HashMap<>();
            item.put("type", artifact.getType().getId());
            item.put("id", artifact.getName() + ":" + artifact.getVersion());
            item.put("name", artifact.getName());
            item.put("version", artifact.getVersion());
            item.put("url", artifact.getUrl());
            return item;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            lib.getName() >> "libName"
            staticLibBinary.getProjectPath() >> ":"
            binaryNamingScheme.getVariantDimensions() >> ["buildTypeOne"]
    
            then:
            checkNames targetBinary, "libNameLib", 'buildTypeOne'
        }
    
        def "includes project path in visual studio project name"() {
            when:
            exe.getName() >> "exeName"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

            def adapter = createAdapter(listener)
    
            when:
            def childBuildDescriptor = Mock(InternalOperationDescriptor)
            _ * childBuildDescriptor.getId() >> 2
            _ * childBuildDescriptor.getName() >> 'some child'
            _ * childBuildDescriptor.getParentId() >> 1
    
            def childEvent = Mock(InternalOperationStartedProgressEvent)
            _ * childEvent.getDisplayName() >> 'child event'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

            LOGGER.info("Generating " + outputJar.getAbsolutePath());
            ProgressLogger progressLogger = progressLoggerFactory.newOperation(RuntimeShadedJarCreator.class);
            progressLogger.setDescription("Generating " + outputJar.getName());
            progressLogger.started();
            try {
                createFatJar(outputJar, files, progressLogger);
            } finally {
                progressLogger.completed();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/accessors.go

    	GetCompiledMatcher(compiler cel.FilterCompiler) matchconditions.Matcher
    
    	// GetName gets the webhook Name field. Note that the name is scoped to the webhook
    	// configuration and does not provide a globally unique identity, if a unique identity is
    	// needed, use GetUID.
    	GetName() string
    	// GetClientConfig gets the webhook ClientConfig field.
    	GetClientConfig() v1.WebhookClientConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	}
    	if len(nodeName) == 0 {
    		// reject requests from unidentifiable nodes
    		klog.V(2).Infof("NODE DENY: unknown node for user %q", attrs.GetUser().GetName())
    		return authorizer.DecisionNoOpinion, fmt.Sprintf("unknown node for user %q", attrs.GetUser().GetName()), nil
    	}
    
    	// subdivide access to specific resources
    	if attrs.IsResourceRequest() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

            for (Attribute<?> requested : requestedAttributes.keySet()) {
                Object requestedValue = requestedAttributes.getAttribute(requested);
                if (requested.getName().equals(actualAttribute.getName())) {
                    // found an attribute with the same name, but they do not necessarily have the same type
                    if (requested.equals(actualAttribute)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java

                return null;
            }
    
            List<ModelType<?>> typeVariables = subjectType.getTypeVariables();
            if (typeVariables.size() != 1) {
                context.add(ruleDefinition, String.format("Parameter of type %s must declare a type parameter.", rawSubjectType.getName()));
                return null;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top