Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,723 for createId (0.27 sec)

  1. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

        }
    
        /**
         * Creates signing tasks that sign {@link Configuration#getAllArtifacts() all artifacts} of the given configurations.
         *
         * <p>The created tasks will be named "sign<i>&lt;configuration name capitalized&gt;</i>". That is, given a configuration with the name "conf" the created task will be named "signConf".
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasherTest.groovy

                "${Attributes.Name.MANIFEST_VERSION}": "1.0",
                "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                "${Attributes.Name.IMPLEMENTATION_VERSION}": "1.0",
    
                "org/gradle/api": [
                    "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                ],
                "org/gradle/base": [
                    "Created-By": "1.8.0_232-b18 (Azul Systems, Inc.)",
                ]
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

    You can:
    
    * <a href="https://github.com/tiangolo" class="external-link" target="_blank">Follow me on **GitHub**</a>.
        * See other Open Source projects I have created that could help you.
        * Follow me to see when I create a new Open Source project.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    +
    1. Total tasks present when each task is created or not.
    - `Created immediately` represents tasks created using the eager task APIs.
    - `Created during configuration` represents tasks created using the configuration avoidance APIs, but were realized explicitly (via `TaskProvider#get()`) or implicitly using the eager task query APIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/MoreFiles.java

       * Creates any necessary but nonexistent parent directories of the specified path. Note that if
       * this operation fails, it may have succeeded in creating some (but not all) of the necessary
       * parent directories. The parent directory is created with the given {@code attrs}.
       *
       * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent
       *     directories of the specified file could not be created.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    	if diff < 0 {
    		diff *= -1
    		if diff > rsc.burstReplicas {
    			diff = rsc.burstReplicas
    		}
    		// TODO: Track UIDs of creates just like deletes. The problem currently
    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsAccessTokenBhv.java

        public int selectCount(CBCall<AccessTokenCB> cbLambda) {
            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<AccessToken> selectEntity(CBCall<AccessTokenCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<AccessToken> facadeSelectEntity(AccessTokenCB cb) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsDuplicateHostBhv.java

        public int selectCount(CBCall<DuplicateHostCB> cbLambda) {
            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<DuplicateHost> selectEntity(CBCall<DuplicateHostCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<DuplicateHost> facadeSelectEntity(DuplicateHostCB cb) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRequestHeaderBhv.java

        public int selectCount(CBCall<RequestHeaderCB> cbLambda) {
            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<RequestHeader> selectEntity(CBCall<RequestHeaderCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<RequestHeader> facadeSelectEntity(RequestHeaderCB cb) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskContainer.java

         * @return The newly created task object
         * @throws InvalidUserDataException If a task with the given name already exists in this project.
         * @see Project#getProperties()  More information about how tasks are exposed by name in build scripts
         */
        @Override
        Task create(String name) throws InvalidUserDataException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 17.6K bytes
    - Viewed (0)
Back to top