Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for Desc (0.06 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

            return false;
        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
            if ("Lorg/testng/annotations/Test;".equals(desc)) {
                setTest(true);
            }
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isAbstract() && !isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/LimitedDescriptionTest.groovy

        @SuppressWarnings("deprecation")
        def desc = new LimitedDescription(2)
    
        def "has limited description"() {
            when:
            desc.append("0").append("one").append("2").append("three !")
    
            then:
            desc.toString() == """2
    three !
    """
        }
    
        def "is described even when empty"() {
            expect:
            desc.toString().length() != 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

        "experimental-prune-unreachable-nodes-unconditionally",
        llvm::cl::desc("Prune nodes that are not ancestors of the output nodes."),
        llvm::cl::location(experimental_prune_unreachable_nodes_unconditionally),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static opt<std::string> input_arrays_flag(
        "input-arrays",
        llvm::cl::desc(
            "List of input tensors, if different from the default inputs"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonDiagnosticsTest.groovy

            def log = temp.file("foo.log")
            log << "hey joe!"
            def diagnostics = new DaemonDiagnostics(log, 123)
    
            when:
            String desc = diagnostics.describe()
    
            then:
            desc.contains "123"
            desc.contains log.name
            desc.contains "hey joe!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

    opt<std::string> input_path(llvm::cl::Positional,
                                llvm::cl::desc("<input path>"), llvm::cl::Required);
    
    // NOLINTNEXTLINE
    opt<std::string> output_filename("o", llvm::cl::desc("<output path>"),
                                     llvm::cl::Optional, llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    opt<std::string> input_arg_shapes_str(
        "input-arg-shapes",
        llvm::cl::desc(
            "A string representation of input argument shapes for 'main' "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoader.java

            }
    
            @Override
            public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
                if (desc.equals(ANNOTATION_DESCRIPTOR)) {
                    return new AnnotationTransformingVisitor(super.visitAnnotation(desc, visible));
                }
                return super.visitAnnotation(desc, visible);
            }
    
            private static class AnnotationTransformingVisitor extends AnnotationVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptor.java

                    MethodModelRuleDescriptor desc = descriptors.get(weakMethod);
                    if (desc != null) {
                        return desc;
                    }
                    desc = new MethodModelRuleDescriptor(weakMethod);
                    // Only cache non-overloaded methods by name
                    descriptors.put(weakMethod, desc);
                    return desc;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/podresources/server_v1alpha1_test.go

    		},
    	}
    
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    
    	for _, tc := range []struct {
    		desc             string
    		pods             []*v1.Pod
    		devices          []*podresourcesv1.ContainerDevices
    		expectedResponse *v1alpha1.ListPodResourcesResponse
    	}{
    		{
    			desc:             "no pods",
    			pods:             []*v1.Pod{},
    			devices:          []*podresourcesv1.ContainerDevices{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

            try {
                PluginDescriptor desc = descriptors.get(key);
                if (desc == null) {
                    synchronized (key) {
                        desc = descriptors.get(key);
                        if (desc == null) {
                            desc = supplier.load();
                            descriptors.putIfAbsent(key, clone(desc));
                        }
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/ByteSourceTester.java

          ByteSourceFactory factory, String string, String name, String desc) {
        TestSuite suite = suiteForBytes(factory, string.getBytes(Charsets.UTF_8), name, desc, true);
        CharSourceFactory charSourceFactory = SourceSinkFactories.asCharSourceFactory(factory);
        suite.addTest(
            CharSourceTester.suiteForString(
                charSourceFactory, string, name + ".asCharSource[Charset]", desc));
        return suite;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top