Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 214 for throws (0.63 sec)

  1. guava/src/com/google/common/cache/Striped64.java

                @Override
                public sun.misc.Unsafe run() throws Exception {
                  Class<sun.misc.Unsafe> k = sun.misc.Unsafe.class;
                  for (java.lang.reflect.Field f : k.getDeclaredFields()) {
                    f.setAccessible(true);
                    Object x = f.get(null);
                    if (k.isInstance(x)) return k.cast(x);
                  }
                  throw new NoSuchFieldError("the Unsafe");
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/Striped64.java

                @Override
                public sun.misc.Unsafe run() throws Exception {
                  Class<sun.misc.Unsafe> k = sun.misc.Unsafe.class;
                  for (java.lang.reflect.Field f : k.getDeclaredFields()) {
                    f.setAccessible(true);
                    Object x = f.get(null);
                    if (k.isInstance(x)) return k.cast(x);
                  }
                  throw new NoSuchFieldError("the Unsafe");
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Striped64.java

                @Override
                public sun.misc.Unsafe run() throws Exception {
                  Class<sun.misc.Unsafe> k = sun.misc.Unsafe.class;
                  for (java.lang.reflect.Field f : k.getDeclaredFields()) {
                    f.setAccessible(true);
                    Object x = f.get(null);
                    if (k.isInstance(x)) return k.cast(x);
                  }
                  throw new NoSuchFieldError("the Unsafe");
                }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                modelBuilder.get()
            }
        }
    
        private static boolean documentIsEquivalentTo(
            String expectedDocumentText,
            def actualDocument // can't declare it as DeclarativeDocument, throws NCDFE from the test runner (???)
        ) {
            def doc = actualDocument as DeclarativeDocument
            def parsed = ParserKt.parse(expectedDocumentText)
            def languageTree = new DefaultLanguageTreeBuilder().build(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

        }
    
        @Override
        public ImmutableAttributes getAttributes() {
            assert cachedAttributes != null;
            return cachedAttributes;
        }
    
        private ImmutableAttributes safeGetAttributes() throws AttributeMergingException {
            ModuleResolveState module = selector.getTargetModule();
            cachedAttributes = module.mergedConstraintsAttributes(dependencyState.getDependency().getSelector().getAttributes());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

        List<EdgeState> getUnattachedDependencies() {
            return unattachedDependencies;
        }
    
        ImmutableAttributes mergedConstraintsAttributes(AttributeContainer append) throws AttributeMergingException {
            if (attributeMergingError != null) {
                throw new IllegalStateException(IncompatibleDependencyAttributesMessageBuilder.buildMergeErrorMessage(this, attributeMergingError));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                String path = className.replace('.', '/').concat(".class");
                return classLoader.findResource(path) != null;
            }
    
            @Override
            public void close() throws IOException {
                classLoader.close();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

                    if (!buildSuiteXml.delete()) {
                        throw new RuntimeException("failed to remove already existing build-suite.xml file");
                    }
                }
    
                IoActions.writeTextFile(buildSuiteXml, new ErroringAction<BufferedWriter>() {
                    @Override
                    protected void doExecute(BufferedWriter writer) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        /**
         * Gets all problems collected by the Problems API.
         *
         * @return The list of collected problems
         * @throws IllegalStateException if the Problems API check is not enabled
         */
        List<ReceivedProblem> getCollectedProblems() {
            if (!enableProblemsApiCheck) {
                throw new IllegalStateException('Problems API check is not enabled')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

    function update-node-journal {
      local -r configmap_yaml="$1"
      if [[ "${ENABLE_NODE_JOURNAL:-}" != "true" ]]; then
        # Removes all lines between two patterns (throws away node-journal)
        sed -i -e "/# BEGIN_NODE_JOURNAL/,/# END_NODE_JOURNAL/d" "${configmap_yaml}"
      fi
    }
    
    # Updates parameters in yaml file for prometheus-to-sd configuration, or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top