Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for unsupportedOp (3.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// equality checking.
    				"type(self) == type(self)":                                     5,
    				"type(self.nestedInMap['k1']) == type(self.nestedInMap['k2'])": 9,
    			},
    		},
    		{name: "listMaps with unsupported identity characters in property names",
    			obj: map[string]interface{}{
    				"objs": []interface{}{
    					[]interface{}{
    						map[string]interface{}{"k!": "a", "k.": "1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  5. 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)
  6. pkg/proxy/ipvs/proxier.go

    						Port:     svcInfo.NodePort(),
    						Protocol: protocol,
    						SetType:  utilipset.HashIPPort,
    					})
    				}
    			default:
    				// It should never hit
    				proxier.logger.Error(nil, "Unsupported protocol type", "protocol", protocol)
    			}
    			if nodePortSet != nil {
    				entryInvalidErr := false
    				for _, entry := range entries {
    					if valid := nodePortSet.validateEntry(entry); !valid {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                return TaskExecutionDetails.of(taskResult.isIncremental(), taskResult.getExecutionReasons());
            }
            return TaskExecutionDetails.unsupported();
        }
    
        private static @Nullable WorkItemOperationResult toWorkItemResult(InternalOperationResult result) {
            if (result instanceof InternalSuccessResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				// Can remove dups to make valid
    				//! Normally this woud be valid, but SSA is unable to interpret
    				// the `liveObj` in the new schema, so fails. Changing
    				// x-kubernetes-list-type from anything to a set is unsupported by SSA.
    				applyPatchOperation{
    					"remove dups to make list valid",
    					myCRDV1Beta1,
    					myCRDInstanceName,
    					map[string]interface{}{
    						"values": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    			return field.Invalid(fldPath, expression.GetExpression(), celErr.Detail)
    		case cel.ErrorTypeInternal:
    			return field.InternalError(fldPath, celErr)
    		}
    	}
    	return field.InternalError(fldPath, fmt.Errorf("unsupported error type: %w", err))
    }
    
    func validateValidationExpression(compiler plugincel.Compiler, expression string, hasParams bool, opts validationOptions, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    		return
    	}
    
    	if err := commitBinary(); err != nil {
    		s.writeErrorResponse(w, err)
    		return
    	}
    }
    
    var errUnsupportedSignal = fmt.Errorf("unsupported signal")
    
    func waitingDrivesNode() map[string]madmin.DiskMetrics {
    	globalLocalDrivesMu.RLock()
    	localDrives := cloneDrives(globalLocalDrives)
    	globalLocalDrivesMu.RUnlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top