Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 381 for unsupportedOp (0.3 sec)

  1. android/guava/src/com/google/common/collect/ImmutableRangeMap.java

      }
    
      /**
       * Guaranteed to throw an exception and leave the {@code RangeMap} unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final void put(Range<K> range, V value) {
        throw new UnsupportedOperationException();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

            String build() {
                """${intro}  - Problem: In version catalog ${catalog}, unsupported version catalog format ${unsupported}.
    
        Reason: This version of Gradle only supports format version ${expected}.
    
        Possible solution: Try to upgrade to a newer version of Gradle which supports the catalog format version ${unsupported}.
    
        ${documentation}"""
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentIdentifierSerializer.java

                case OPAQUE_NOTATION:
                    return new OpaqueComponentIdentifier(readClassPathNotation(decoder));
                default:
                    throw new IllegalArgumentException("Unsupported component identifier implementation: " + implementation);
            }
        }
    
        @Override
        public void write(Encoder encoder, ComponentIdentifier value) throws IOException {
            if (value == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            }
    
            if (additionalData instanceof UnsupportedAdditionalDataSpec) {
                return invalidProblem("unsupported-additional-data", "Unsupported additional data type", "Unsupported additional data type: " + ((UnsupportedAdditionalDataSpec) additionalData).getType().getName() + ". Supported types are: " + supportedAdditionalDataTypes);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util_test.cc

      const auto& uncompilable_node_info = uncompilable_nodes_inside_function.at(0);
      EXPECT_TRUE(absl::StrContains(uncompilable_node_info.uncompilable_reason,
                                    "unsupported op"));
      ASSERT_EQ(1, uncompilable_node_info.stack_trace.size());
      ASSERT_EQ("", uncompilable_node_info.stack_trace.at(0).function_name);
    }
    
    TEST_F(CompilabilityCheckUtilTest, CheckOutsideCompiledNode) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableMultimap.java

      }
    
      // mutators (not supported)
    
      /**
       * Guaranteed to throw an exception and leave the multimap unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/expand/expand_controller.go

    	return func(_, _ string) (*v1.Secret, error) {
    		return nil, fmt.Errorf("GetSecret unsupported in expandController")
    	}
    }
    
    func (expc *expandController) GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error) {
    	return func(_, _ string) (*v1.ConfigMap, error) {
    		return nil, fmt.Errorf("GetConfigMap unsupported in expandController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableMap.java

       * @deprecated Unsupported operation.
       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      @CheckForNull
      public final V remove(@CheckForNull Object o) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * Guaranteed to throw an exception and leave the map unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[unsupported_value_type]]
    == Unsupported value type
    
    This message indicates that a task declares an input property with values of an unsupported type.
    
    To address this, look at the message which indicates the list of possible solutions.
    
    Please find below the list of unsupported value types:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMultimap.java

      }
    
      // mutators (not supported)
    
      /**
       * Guaranteed to throw an exception and leave the multimap unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top