Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,543 for ApplyG (0.09 sec)

  1. tensorflow/c/experimental/ops/array_ops.cc

    //   example, suppose y = f(x) and we wish to apply a custom function g for
    //   backprop such that dx = g(dy). In Python,
    //
    //   ```python
    //   with tf.get_default_graph().gradient_override_map(
    //       {'IdentityN': 'OverrideGradientWithG'}):
    //     y, _ = identity_n([f(x), x])
    //
    //   @tf.RegisterGradient('OverrideGradientWithG')
    //   def ApplyG(op, dy, _):
    //     return [None, g(dy)]  # Do not backprop to f(x).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/apply.go

    type AppliedResult struct {
    	// processedObjects is the list of objects that were processed in this apply operation.
    	processedObjects object.K8sObjects
    	// deployed is the number of objects have been deployed which means
    	// it's in the cache and it's not changed from the cache.
    	deployed int
    }
    
    // Succeed returns true if the apply operation succeeded.
    func (r AppliedResult) Succeed() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tunnelingconfig/apply.go

    	networking "istio.io/api/networking/v1alpha3"
    )
    
    type ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string)
    
    // Apply configures tunneling_config in a given TcpProxy depending on the destination rule and the destination hosts
    var Apply ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string) {
    	var tunnelSettings *networking.TrafficPolicy_TunnelSettings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/apply.go

    	if ok {
    		upgradeCfg.Apply.EtcdUpgrade = etcdUpgrade
    	} else {
    		return cmdutil.TypeMismatchErr("etcdUpgrade", "bool")
    	}
    
    	renewCerts, ok := cmdutil.ValueFromFlagsOrConfig(flagSet, options.CertificateRenewal, upgradeCfg.Apply.CertificateRenewal, &flags.renewCerts).(*bool)
    	if ok {
    		upgradeCfg.Apply.CertificateRenewal = renewCerts
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. pkg/test/util/yml/apply.go

    John Howard <******@****.***> 1697526158 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. hack/testdata/filter/pod-dont-apply.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: selector-test-pod-dont-apply
      labels:
        name: selector-test-pod-dont-apply
        unique-label: biz
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 228 bytes
    - Viewed (0)
  7. hack/testdata/pod-apply.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 174 bytes
    - Viewed (0)
  8. hack/testdata/filter/pod-apply-selector.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 211 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		a.apply(n, "X", nil, n.X)
    		a.applyList(n, "Indices")
    
    	case *ast.SliceExpr:
    		a.apply(n, "X", nil, n.X)
    		a.apply(n, "Low", nil, n.Low)
    		a.apply(n, "High", nil, n.High)
    		a.apply(n, "Max", nil, n.Max)
    
    	case *ast.TypeAssertExpr:
    		a.apply(n, "X", nil, n.X)
    		a.apply(n, "Type", nil, n.Type)
    
    	case *ast.CallExpr:
    		a.apply(n, "Fun", nil, n.Fun)
    		a.applyList(n, "Args")
    
    	case *ast.StarExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

            manager.findPlugin("foo") == null
        }
    
        def "can apply rules plugin with no id"() {
            when:
            manager.apply(rulesClass)
    
            then:
            1 * target.applyRules(null, rulesClass)
    
            and:
            manager.pluginContainer.isEmpty()
        }
    
        def "can apply rules plugin by class with id"() {
            given:
            addPluginId("foo", rulesClass)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top