Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 243 for unsupportedOp (2.31 sec)

  1. src/crypto/tls/handshake_server.go

    		default:
    			c.sendAlert(alertInternalError)
    			return fmt.Errorf("tls: unsupported signing key type (%T)", priv.Public())
    		}
    	}
    	if priv, ok := hs.cert.PrivateKey.(crypto.Decrypter); ok {
    		switch priv.Public().(type) {
    		case *rsa.PublicKey:
    			hs.rsaDecryptOk = true
    		default:
    			c.sendAlert(alertInternalError)
    			return fmt.Errorf("tls: unsupported decryption key type (%T)", priv.Public())
    		}
    	}
    
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	return func(_, _ string) (*v1.Secret, error) {
    		return nil, fmt.Errorf("GetSecret unsupported in attachDetachController")
    	}
    }
    
    func (adc *attachDetachController) GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error) {
    	return func(_, _ string) (*v1.ConfigMap, error) {
    		return nil, fmt.Errorf("GetConfigMap unsupported in attachDetachController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

      void runOnOperation() override;
    
      StringRef getArgument() const final { return "quant-raise-flex-fallback"; }
    
      StringRef getDescription() const final {
        return "Fallback TF-Quantization-unsupported ops to TFLite Flex ops.";
      }
    
      void getDependentDialects(DialectRegistry &registry) const override {
        registry.insert<TFL::TensorFlowLiteDialect>();
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

            return new ConditionBeanExceptionThrower();
        }
    
        @Override
        public void xsetPaging(boolean paging) {
            // Do nothing because this is unsupported on ConditionBean.
            // And it is possible that this method is called by PagingInvoker.
        }
    
        @Override
        public void enablePagingCountLater() {
            // nothing
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

                }
            } else if (type instanceof TypeVariable) {
                return getRawType(getUppermostType(((TypeVariable<?>) type).getBounds()));
            } else {
                throw new IllegalArgumentException("Unsupported type: " + type);
            }
        }
    
        /**
         * Returns the most common type among given types
         */
        public static Type getUppermostType(Type[] types) {
            Type result = types[0];
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	case *string:
    		return *ptr
    	case *int:
    		return fmt.Sprint(*ptr)
    	case *float64:
    		return fmt.Sprint(*ptr)
    	case *bool:
    		return fmt.Sprint(*ptr)
    	}
    	panic(fmt.Sprintf("unsupported config field type %v", f.field.Type))
    }
    
    // set sets the value of field f in cfg to value.
    func (cfg *config) set(f configField, value string) error {
    	switch ptr := cfg.fieldPtr(f).(type) {
    	case *string:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

        llvm::StringRef equation) {
      llvm::SmallDenseMap<char, int64_t> map;
      for (int64_t i = 0; i < equation.size(); ++i) {
        if (!std::isalpha(equation[i])) {
          // Unsupported character in the equation.
          return std::nullopt;
        }
        if (map.count(equation[i])) {
          // Duplicate character in the equation.
          return std::nullopt;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            'Integer'     | 'Integer.valueOf(0)'
            'String'      | '"foo"'
            'Enum'        | 'Letter.A'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23045")
        def "nested map with unsupported key type is validated with warning"() {
            javaTaskSource << """
                import org.gradle.api.*;
                import org.gradle.api.tasks.*;
                import org.gradle.work.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableList.java

          return super.writeReplace();
        }
      }
    
      /**
       * Guaranteed to throw an exception and leave the list unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final boolean addAll(int index, Collection<? extends E> newElements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

                        .forProperty(propertyName)
                        .id(TextUtil.screamingSnakeToKebabCase(UNSUPPORTED_NOTATION), "Property has unsupported value", GradleCoreProblemGroup.validation().property())
                        .contextualLabel("has unsupported value '" + value + "'")
                        .documentedAt(userManual("validation_problems", UNSUPPORTED_NOTATION.toLowerCase()))
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top