Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tffunction (0.52 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Partition = in.Partition
    	out.ReadOnly = in.ReadOnly
    	return nil
    }
    
    // Convert_v1_AWSElasticBlockStoreVolumeSource_To_core_AWSElasticBlockStoreVolumeSource is an autogenerated conversion function.
    func Convert_v1_AWSElasticBlockStoreVolumeSource_To_core_AWSElasticBlockStoreVolumeSource(in *v1.AWSElasticBlockStoreVolumeSource, out *core.AWSElasticBlockStoreVolumeSource, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    // enough to call the wrapped assembly function).
    // This always returns a freshly copied ABI.
    func AbiForBodylessFuncStackMap(fn *ir.Func) *abi.ABIConfig {
    	return ssaConfig.ABI0.Copy() // No idea what races will result, be safe
    }
    
    // abiForFunc implements ABI policy for a function, but does not return a copy of the ABI.
    // Passing a nil function returns the default ABI based on experiment configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // Verify that the arguments to be passed into the function are the same types
    // as the function paramter types.
    static bool ArgTypesMatchCallee(mlir::Operation *op, OperandRange args,
                                    SymbolRefAttr func) {
      auto module = op->getParentOfType<ModuleOp>();
      auto function =
          dyn_cast_or_null<func::FuncOp>(SymbolTable::lookupSymbolIn(module, func));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - Exposed `rest.DefaultServerUrlFor` function. ([#118055](https://github.com/kubernetes/kubernetes/pull/118055),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

       ([#122508](https://github.com/kubernetes/kubernetes/pull/122508), [@carlory](https://github.com/carlory))
    - Restored the `--verify-only` function in code generation wrappers.
       ([#123261](https://github.com/kubernetes/kubernetes/pull/123261), [@skitt](https://github.com/skitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    		lg.Printf(format, args...)
    	} else {
    		log.Printf(format, args...)
    	}
    }
    
    // errno returns v's underlying uintptr, else 0.
    //
    // TODO: remove this helper function once http2 can use build
    // tags. See comment in isClosedConnError.
    func http2errno(v error) uintptr {
    	if rv := reflect.ValueOf(v); rv.Kind() == reflect.Uintptr {
    		return uintptr(rv.Uint())
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    				} else if !strings.HasPrefix(err.Error(), tc.error) {
    					t.Errorf("got wrong error: %v (expected %q)", err, tc.error)
    				}
    			}
    		})
    	}
    }
    
    // orderByCommentServiceName is a helper function that orders two IPTables rules
    // based on the service name in their comment. (If either rule has no comment then the
    // return value is undefined.)
    func orderByCommentServiceName(rule1, rule2 *iptablestest.Rule) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top