Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for unsupportedOp (0.35 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    link:{gradle-issues}13473[[.green]#✓#]:: <<project_report_plugin.adoc#project_report_plugin,Project Report Plugin>>
    
    |===
    
    [horizontal]
    [.green]#✓#:: Supported plugin
    [.yellow]#⚠#:: Partially supported plugin
    [.red]#✖#:: Unsupported plugin
    
    [[config_cache:plugins:community]]
    === Community plugins
    
    Please refer to issue link:{gradle-issues}13490[gradle/gradle#13490] to learn about the status of community plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    	}
    	// Iterate over all protocol pairs and generate listeners
    	// ValidateListeners will be called on all of them ensuring they are valid
    	protos := []protocol.Instance{protocol.TCP, protocol.TLS, protocol.HTTP, protocol.Unsupported}
    	for _, older := range protos {
    		for _, newer := range protos {
    			t.Run(fmt.Sprintf("%v then %v", older, newer), func(t *testing.T) {
    				run(t, []*model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    static Value CreateTFCastOpF32(OpBuilder *builder, Location loc, Value x,
                                   BoolAttr truncate) {
      auto x_type = mlir::dyn_cast_or_null<ShapedType>(x.getType());
      if (!x_type) llvm_unreachable("unsupported type");
      Type type = x_type.clone(builder->getF32Type());
      return builder->create<CastOp>(loc, type, x, truncate);
    }
    
    // Returns a TF_CastOp to I32. This function is used for CastOps that are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    	{126, "ENOLINK", "the server link has been severed"},
    	{127, "EOVERFLOW", "value too large to be stored in data type"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    	{126, "ENOLINK", "the server link has been severed"},
    	{127, "EOVERFLOW", "value too large to be stored in data type"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	var defaultGCPolicy rest.GarbageCollectionPolicy
    	if ok {
    		defaultGCPolicy = gcStrategy.DefaultGarbageCollectionPolicy(ctx)
    	}
    
    	if defaultGCPolicy == rest.Unsupported {
    		// return  false to indicate that we should NOT orphan
    		return false
    	}
    
    	// An explicit policy was set at deletion time, that overrides everything
    	//nolint:staticcheck // SA1019 backwards compatibility
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    			for _, m := range args.Matches {
    				spl := strings.Split(m, ".")
    				if len(spl) != 5 {
    					t.Skipf("unsupported match: %v", spl)
    				}
    				if spl[0] == "*" {
    					t.Skipf("unsupported match: %v", spl)
    				}
    				args.GwMatches = append(args.GwMatches, types.NamespacedName{
    					Namespace: spl[1],
    					Name:      spl[0],
    				})
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/asm0.go

    func (c *ctxt0) twobitdf(a obj.As) uint32 {
    	switch a {
    	case AVMOVB:
    		return 0
    	case AVMOVH:
    		return 1
    	case AVMOVW:
    		return 2
    	case AVMOVD:
    		return 3
    	default:
    		c.ctxt.Diag("unsupported data format %v", a)
    	}
    	return 0
    }
    
    // MSA Load/Store offset have to be multiple of size of data format
    func (c *ctxt0) lsoffset(a obj.As, o int32) int32 {
    	var mod int32
    	switch a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top