Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for hierarchies (0.38 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // To write value-parameterized tests, first you should define a fixture
    // class. It is usually derived from testing::TestWithParam<T> (see below for
    // another inheritance scheme that's sometimes useful in more complicated
    // class hierarchies), where the type of your parameter values.
    // TestWithParam<T> is itself derived from testing::Test. T can be any
    // copyable type. If it's a raw pointer, you are responsible for managing the
    // lifespan of the pointed values.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

            when (val readResolve = readResolveMethod.forObject(bean)) {
                null -> bean
                else -> readResolve.invoke(bean)
            }
    
        /**
         * Caches the computed `readObject` method hierarchies during decoding because [ReadContext.decode] might
         * be called multiple times for the same type.
         */
        private
        fun readObjectMethodHierarchyForDecoding(type: Class<*>): List<Method> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

        private static final int DEFAULT_MAX_HIERARCHIES_TO_WATCH = 50;
        public static final IntegerInternalOption MAX_HIERARCHIES_TO_WATCH_PROPERTY = new IntegerInternalOption("org.gradle.vfs.watch.hierarchies.max", DEFAULT_MAX_HIERARCHIES_TO_WATCH);
        private static final int FILE_HASHER_MEMORY_CACHE_SIZE = 400000;
    
        public static boolean isDropVfs(InternalOptions options) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.started(NotifyTaskGraphWhenReadyBuildOperationType.Details, [buildPath: ":a"])
            notifications.started(NotifyTaskGraphWhenReadyBuildOperationType.Details, [buildPath: ":"])
    
            // evaluate hierarchies
            notifications.op(LoadBuildBuildOperationType.Details, [buildPath: ":"]).parentId == notifications.op(RunBuildBuildOperationType.Details).id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

        private final FileChangeListeners fileChangeListeners;
        private final List<File> unsupportedFileSystems = new ArrayList<>();
        private Logger warningLogger = LOGGER;
    
        /**
         * Watchable hierarchies registered before the {@link FileWatcherRegistry} has been started.
         */
        private final Set<File> watchableHierarchiesRegisteredEarly = new LinkedHashSet<>();
    
        private FileWatcherRegistry watchRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            }
        }
    
        private
        fun checkFingerprint(entryDetails: EntryDetails, layout: ConfigurationCacheRepository.Layout): CheckedFingerprint {
            // Register all included build root directories as watchable hierarchies,
            // so we can load the fingerprint for build scripts and other files from included builds
            // without violating file system invariants.
            registerWatchableBuildDirectories(entryDetails.rootDirs)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. docs/sts/ldap.md

        </Credentials>
      </AssumeRoleWithLDAPIdentity>
      <ResponseMetadata/>
    </AssumeRoleWithLDAPIdentityResponse>
    ```
    
    ## Using LDAP STS API
    
    With multiple OU hierarchies for users, and multiple group search base DN's.
    
    ```
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio123
    export MINIO_IDENTITY_LDAP_SERVER_ADDR='my.ldap-active-dir-server.com:636'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs.go

    func CreatePKIAssets(cfg *kubeadmapi.InitConfiguration) error {
    	klog.V(1).Infoln("creating PKI assets")
    
    	// This structure cannot handle multilevel CA hierarchies.
    	// This isn't a problem right now, but may become one in the future.
    
    	var certList Certificates
    
    	if cfg.Etcd.Local == nil {
    		certList = GetCertsWithoutEtcd()
    	} else {
    		certList = GetDefaultCertList()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. docs/de/docs/features.md

    * Selbst Abhängigkeiten können Abhängigkeiten haben, woraus eine Hierarchie oder ein **„Graph“ von Abhängigkeiten** entsteht.
    * Alles **automatisch gehandhabt** durch das Framework.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 19:43:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. docs/pl/docs/features.md

    * Nawet zależności mogą mieć zależności, tworząc hierarchię lub **"graf" zależności**.
    * Wszystko jest **obsługiwane automatycznie** przez framework.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top