Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 112 of 112 for uncheckedNonnullCast (0.49 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                throw new IllegalStateException(String.format("Unexpected operation type. Required %s but found %s", type.getName(), descriptorClass.getName()));
            }
            return Cast.uncheckedNonnullCast(descriptor);
        }
    
        private TestOperationDescriptor toTestDescriptor(InternalTestDescriptor descriptor) {
            OperationDescriptor parent = getParentDescriptor(descriptor.getParentId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                for (Attribute<?> attribute : configurationAttributes.keySet()) {
                    Object value = configurationAttributes.getAttribute(attribute);
                    copiedConfiguration.getAttributes().attribute(Cast.uncheckedNonnullCast(attribute), value);
                }
            }
    
            // todo An ExcludeRule is a value object but we don't enforce immutability for DefaultExcludeRule as strong as we
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top