Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for unsupportedOp (1.7 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

          super.putAll(entries);
          return this;
        }
    
        /**
         * Throws an {@code UnsupportedOperationException}.
         *
         * @since 19.0
         * @deprecated Unsupported by ImmutableSortedMap.Builder.
         */
        @CanIgnoreReturnValue
        @Override
        @Deprecated
        @DoNotCall("Always throws UnsupportedOperationException")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    				}
    
    				// if we have a tcp fallthrough filter chain, this is no longer an HTTP listener - it
    				// is instead "unsupported" (auto detected), as we have a TCP and HTTP filter chain with
    				// inspection to route between them
    				listenerPortProtocol = protocol.Unsupported
    			}
    
    		case istionetworking.ListenerProtocolTCP:
    			opts = buildSidecarOutboundTCPListenerOpts(listenerOpts, virtualServices)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        std::transform(inputs.begin(), inputs.end(), outputs.begin(),
                       [](auto x) { return static_cast<int32_t>(x); });
        return outputs;
      } else {
        return errors::Unimplemented("Unsupported SparseIndexVector type");
      }
    }
    
    static StatusOr<Operation*> BuildSparseConstOp(
        const tflite::TensorT& tensor, const std::vector<uint8_t>& buffer,
        OpBuilder& builder, Location loc) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          super.putAll(entries);
          return this;
        }
    
        /**
         * Throws an {@code UnsupportedOperationException}.
         *
         * @since 19.0
         * @deprecated Unsupported by ImmutableSortedMap.Builder.
         */
        @CanIgnoreReturnValue
        @Override
        @Deprecated
        @DoNotCall("Always throws UnsupportedOperationException")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	default:
    		return false
    	}
    }
    
    // isUnsupportedVMASize reports whether the failure is caused by an unsupported
    // VMA for the race detector (for example, running the race detector on an
    // arm64 machine configured with 39-bit VMA).
    func isUnsupportedVMASize(w *work) bool {
    	unsupportedVMA := []byte("unsupported VMA range")
    	return strings.Contains(w.dt.name, ":race") && bytes.Contains(w.out.Bytes(), unsupportedVMA)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            Severity.WARNING,
                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    
        private void validate20RawResources(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            Severity.WARNING,
                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    
        private void validate20RawResources(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. pkg/controller/disruption/disruption_test.go

    	pod, _ := newPod(t, "naked")
    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    
    	ps.VerifyDisruptionAllowed(t, pdbName, 0)
    	verifyEventEmitted(t, dc, "UnmanagedPods")
    }
    
    // Create a pod  with unsupported controller, and verify that a PDB with a percentage
    // specified won't allow a disruption.
    func TestUnsupportedControllerPod(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            // check for presence of unsupported command line options
            try {
                if (cliRequest.commandLine.hasOption("llr")) {
                    throw new UnrecognizedOptionException("Option '-llr' is not supported starting with Maven 3.9.1");
                }
            } catch (ParseException e) {
                System.err.println("Unsupported options: " + e.getMessage());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. pkg/volume/testing/testing.go

    	// FailWithInUseVolumeName will cause NodeExpandVolume to result in FailedPrecondition error
    	FailWithInUseVolumeName       = "fail-expansion-in-use"
    	FailWithUnSupportedVolumeName = "fail-expansion-unsupported"
    
    	FailVolumeExpansion = "fail-expansion-test"
    
    	AlwaysFailNodeExpansion = "always-fail-node-expansion"
    
    	deviceNotMounted     = "deviceNotMounted"
    	deviceMountUncertain = "deviceMountUncertain"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top