Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 217 of 217 for throwAsUncheckedException (0.32 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

                writeEntriesSerially();
                serializeResult(signatureVerificationService, existingKeyring);
            } catch (IOException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            } finally {
                signatureVerificationService.stop();
            }
        }
    
        public boolean ensureOutputDirCreated() {
            return verificationFile.getParentFile().mkdirs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                    return;
                }
                try {
                    Thread.sleep(100);
                } catch (InterruptedException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
            } while (expiry.compareTo(Instant.now()) > 0);
    
            // Health is not ok
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            }
        }
    
        public void clear() {
            store.clear();
            close();
            try {
                doOpen();
            } catch (Exception e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        private class IndexRoot {
            private BlockPointer rootPos = BlockPointer.start();
            private HeaderBlock owner;
    
            private IndexRoot(HeaderBlock owner) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            beforeExecute(executer -> {
                try {
                    FileSystemWatchingHelper.waitForChangesToBePickedUp();
                } catch (InterruptedException e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
            });
        }
    
        @Override
        public GradleExecuter reset() {
            DeprecationLogger.reset();
            IncubationLogger.reset();
            return super.reset();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                equalsMethod = Object.class.getMethod("equals", Object.class);
                hashCodeMethod = Object.class.getMethod("hashCode");
            } catch (NoSuchMethodException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
            EQUALS_METHOD = equalsMethod;
            HASHCODE_METHOD = hashCodeMethod;
        }
    
        public ProtocolToModelAdapter() {
            this(IDENTITY_TYPE_PROVIDER);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            try {
                return stdinPipe == null ? SafeStreams.emptyInput() : new PipedInputStream(stdinPipe);
            } catch (IOException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        public PipedOutputStream getStdinPipe() {
            return stdinPipe;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

        }
    
        private static URI uriFromString(String uriAsString) {
            try {
                return new URI(uriAsString);
            } catch (URISyntaxException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        /**
         * Adds a plugin to be applied
         *
         * @param comment A description of why the plugin is required
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top