Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 114 for T_simple (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_USES_POSIX_RE 1
    
    #elif GTEST_OS_WINDOWS
    
    // <regex.h> is not available on Windows.  Use our own simple regex
    // implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    #else
    
    // <regex.h> may not be available on this platform.  Use our own
    // simple regex implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    #endif  // GTEST_HAS_POSIX_RE
    
    #ifndef GTEST_HAS_EXCEPTIONS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The following two sections look at the specific cases of simple class/method names and fully-qualified names.
    
    [[simple_name_pattern]]
    === Simple name pattern
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Gradle uses its own optimized serialization mechanism and format to store the configuration cache entries.
    It automatically serializes the state of arbitrary object graphs.
    If your tasks hold references to objects with simple state or of supported types you don't have anything to do to support the serialization.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    		if f.Type.NotInHeap() {
    			t.SetNotInHeap(true)
    			break
    		}
    	}
    
    	return t
    }
    
    var (
    	IsInt     [NTYPE]bool
    	IsFloat   [NTYPE]bool
    	IsComplex [NTYPE]bool
    	IsSimple  [NTYPE]bool
    )
    
    var IsOrdered [NTYPE]bool
    
    // IsReflexive reports whether t has a reflexive equality operator.
    // That is, if x==x for all x of type t.
    func IsReflexive(t *Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/set-registration-initiation",
    				"application/sgml",
    				"application/sgml-open-catalog",
    				"application/shf+xml",
    				"application/sieve",
    				"application/simple-filter+xml",
    				"application/simple-message-summary",
    				"application/simplesymbolcontainer",
    				"application/slate",
    				"application/smil+xml",
    				"application/soap+fastinfoset",
    				"application/soap+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def expectedUnpackedValue = ["some value", "simple value", "other value"]
    
            when:
            property.add(Providers.of("some value").withSideEffect(sideEffect1))
            property.add(Providers.of("simple value"))
            property.add(Providers.of("other value").withSideEffect(sideEffect2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. docs/ru/docs/deployment/docker.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ## Альтернативная документация API
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    With the `mc` tool, the configuration is very simple to add. Let us say that the MinIO server is aliased as `myminio` in our mc configuration. Execute the following:
    
    ```
    mc mb myminio/images
    mc event add  myminio/images arn:minio:sqs::1:elasticsearch --suffix .jpg
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    	path, err := getIstioVirtualServicePathForSvcFromRoute(cd, svc, port)
    	if err != nil {
    		return "", "", err
    	}
    
    	// Starting with recent 1.5.0 builds, the path will include .istio.io.  Handle both.
    	// nolint: gosimple
    	re := regexp.MustCompile("/apis/networking(\\.istio\\.io)?/v1alpha3/namespaces/(?P<namespace>[^/]+)/virtual-service/(?P<name>[^/]+)")
    	ss := re.FindStringSubmatch(path)
    	if ss == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          return ({tuple(_get_type_from_proto(arg) for arg in op_def.output_arg)},
                  None)
    
        elif f_type == (TFRTypes.PY_BUILTIN_FUNC,):
          assert name.is_simple()
          if name == QN('range'):
            return {TFRTypes.ATTR}, None
    
          if name == QN('len'):
            return {TFRTypes.INDEX}, None
    
        elif f_type == (TFRTypes.TFR_BUILTIN_FUNC,):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top