Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,873 for Invert (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          for (auto pair : *allowlist_table) {
            allowlist.insert(pair.second.begin(), pair.second.end());
          }
        } else if (allowlist_table->contains(s)) {
          auto v = allowlist_table->at(s);
          allowlist.insert(v.begin(), v.end());
        } else if (!s.empty()) {
          // Should be a user provided TF operation.
          allowlist.insert(string(s));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    			// this simple check is forced to work because if this is true a Phi in ind.Block must exists
    			continue
    		}
    
    		check := ind.Block.Controls[0]
    		// invert the check
    		check.Args[0], check.Args[1] = check.Args[1], check.Args[0]
    
    		// swap start and end in the loop
    		for i, v := range check.Args {
    			if v != end {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. pkg/kubectl/cmd/convert/convert.go

    		# Convert 'pod.yaml' to latest version and print to stdout.
    		kubectl convert -f pod.yaml
    
    		# Convert the live state of the resource specified by 'pod.yaml' to the latest version
    		# and print to stdout in JSON format.
    		kubectl convert -f pod.yaml --local -o json
    
    		# Convert all files under current directory to latest version and create them all.
    		kubectl convert -f . | kubectl create -f -`))
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/convert.go

    			fromType.IsPtrShaped() && argType.IsPtrShaped():
    			// can directly convert (e.g. named type to underlying type, or one pointer to another)
    			// TODO: never happens because pointers are directIface?
    			arg = ir.NewConvExpr(pos, ir.OCONVNOP, argType, n)
    		case fromType.IsInteger() && argType.IsInteger():
    			// can directly convert (e.g. int32 to uint32)
    			arg = ir.NewConvExpr(pos, ir.OCONV, argType, n)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. pkg/wasm/convert.go

    				return nil, nil, nil, fmt.Errorf("failed to convert extension config struct %+v to Wasm Network filter", typedStruct)
    			}
    		} else if typedStruct.TypeUrl == model.WasmNetworkFilterType {
    			wasmNetwork = true
    			if err := conversion.StructToMessage(typedStruct.Value, wasmNetworkFilterConfig); err != nil {
    				return nil, nil, nil, fmt.Errorf("failed to convert extension config struct %+v to Wasm HTTP filter", typedStruct)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert.go

    	for i := 0; i < list.Len(); i++ {
    		addParam(values, tag, omitempty, list.Index(i))
    	}
    }
    
    // Convert takes an object and converts it to a url.Values object using JSON tags as
    // parameter names. Only top-level simple values, arrays, and slices are serialized.
    // Embedded structs, maps, etc. will not be serialized.
    func Convert(obj interface{}) (url.Values, error) {
    	result := url.Values{}
    	if obj == nil {
    		return result, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. src/database/sql/convert.go

    		default:
    			dv.Set(sv)
    		}
    		return nil
    	}
    
    	if dv.Kind() == sv.Kind() && sv.Type().ConvertibleTo(dv.Type()) {
    		dv.Set(sv.Convert(dv.Type()))
    		return nil
    	}
    
    	// The following conversions use a string value as an intermediate representation
    	// to convert between various numeric types.
    	//
    	// This also allows scanning into user defined types such as "type Int int64".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. cmd/kubectl-convert/kubectl-convert.go

    	"k8s.io/cli-runtime/pkg/genericclioptions"
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    	"k8s.io/component-base/cli"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    	"k8s.io/kubernetes/pkg/kubectl/cmd/convert"
    )
    
    func main() {
    	flags := pflag.NewFlagSet("kubectl-convert", pflag.ExitOnError)
    	pflag.CommandLine = flags
    
    	kubeConfigFlags := genericclioptions.NewConfigFlags(true).WithDeprecatedPasswordFlag()
    	kubeConfigFlags.AddFlags(flags)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    tf.assert_equal(-3, bitwise_ops.invert(2))
    
    dtype_list = [dtypes.int8, dtypes.int16, dtypes.int32, dtypes.int64,
                  dtypes.uint8, dtypes.uint16, dtypes.uint32, dtypes.uint64]
    
    inputs = [0, 5, 3, 14]
    for dtype in dtype_list:
      # Because of issues with negative numbers, let's test this indirectly.
      # 1. invert(a) and a = 0
      # 2. invert(a) or a = invert(0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. releasenotes/notes/remove-convert-ingress.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 29153
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 17:51:09 UTC 2020
    - 141 bytes
    - Viewed (0)
Back to top