Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 243 for _abc (0.1 sec)

  1. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_GT_Y, "1-abc", "1-alpha");
            assertOrder(X_GT_Y, "1-abc", "1-beta");
            assertOrder(X_GT_Y, "1-abc", "1-milestone");
            assertOrder(X_GT_Y, "1-abc", "1-rc");
            assertOrder(X_GT_Y, "1-abc", "1-snapshot");
            assertOrder(X_GT_Y, "1-abc", "1");
            assertOrder(X_GT_Y, "1-abc", "1-sp");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		}, true, true},
    		{"foo  in	 (abc)", internalSelector{
    			getRequirement("foo", selection.In, sets.NewString("abc"), t),
    		}, true, true},
    		{"x notin\n (abc)", internalSelector{
    			getRequirement("x", selection.NotIn, sets.NewString("abc"), t),
    		}, true, true},
    		{"x  notin	\t	(abc,def)", internalSelector{
    			getRequirement("x", selection.NotIn, sets.NewString("abc", "def"), t),
    		}, true, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            copyAction instanceof MatchingCopyAction
            PatternMatcher matcher = copyAction.matcher
    
            ['/root/folder/abc', '/root/abc'].each {
                assertMatches matcher, it
            }
    
            ['/notRoot/abc', '/not/root/abc', 'root/bbc', 'notRoot/bbc'].each {
                assertMatches matcher.negate(), it
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertEquals("abc", fessXpathTransformer.removeCommentTag("abc"));
            assertEquals("abc ", fessXpathTransformer.removeCommentTag("abc<!-- foo -->"));
            assertEquals("abc 123", fessXpathTransformer.removeCommentTag("abc<!-- fo\no -->123"));
            assertEquals("abc 123", fessXpathTransformer.removeCommentTag("abc<!--\n foo -->123"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            text = "abc";
            queries = new String[] { "abc" };
            assertEquals("<strong>abc</strong>", viewHelper.replaceHighlightQueries(text, queries));
    
            text = "1ABC2";
            queries = new String[] { "abc" };
            assertEquals("1<strong>abc</strong>2", viewHelper.replaceHighlightQueries(text, queries));
    
            text = "abc on exy";
            queries = new String[] { "on" };
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "DirectoryProperty"           | "objects.directoryProperty()"         | "file('abc')"        | new File('abc')
            "DirectoryProperty"           | "objects.directoryProperty()"         | "null"               | "null"
            "RegularFileProperty"         | "objects.fileProperty()"              | "file('abc')"        | new File('abc')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/OptionalTest.java

        assertEquals(java.util.Optional.of("abc"), Optional.toJavaUtil(Optional.of("abc")));
      }
    
      public void testToJavaUtil_instance() {
        assertEquals(java.util.Optional.empty(), Optional.absent().toJavaUtil());
        assertEquals(java.util.Optional.of("abc"), Optional.of("abc").toJavaUtil());
      }
    
      public void testFromJavaUtil() {
        assertNull(Optional.fromJavaUtil(null));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/linalg_grad.cc

    //
    //  scope: Scope for grad operations.
    //  output_grad: The gradient wrt the output of a unary einsum operation.
    //  output_subs: The output subscript. (E.g. `ac` for equation `abc->ac`).
    //  input_subs: The input subscript. (E.g. `abc` for equation `abc->ac`).
    //  input_shape: The shape of the input operand.
    //  reduced_label_set: The set of axis labels appearing in `input_subs` but
    //    not in `output_subs`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  9. pkg/registry/apps/statefulset/strategy_test.go

    			Spec: api.PodSpec{
    				RestartPolicy: api.RestartPolicyAlways,
    				DNSPolicy:     api.DNSClusterFirst,
    				Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent"}},
    			},
    		},
    	}
    	ps := &apps.StatefulSet{
    		ObjectMeta: metav1.ObjectMeta{Name: "abc", Namespace: metav1.NamespaceDefault},
    		Spec: apps.StatefulSetSpec{
    			PodManagementPolicy: apps.OrderedReadyPodManagement,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            when:
            i.enumProperty = "abc"
    
            then:
            i.enumProperty == TestEnum.ABC
    
            when:
            i.someEnumMethod("DEF")
    
            then:
            i.enumProperty == TestEnum.DEF
    
            when:
            i.enumProperty "abc"
    
            then:
            i.enumProperty == TestEnum.ABC
    
            when:
            i.enumProperty "foo"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top