Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 161 for replaced (0.24 sec)

  1. CREDITS

    is an owner of Copyright and Related Rights in the Work, voluntarily
    elects to apply CC0 to the Work and publicly distribute the Work under its
    terms, with knowledge of his or her Copyright and Related Rights in the
    Work and the meaning and intended legal effect of CC0 on those rights.
    
    1. Copyright and Related Rights. A Work made available under CC0 may be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    // only Gateways on port 8080 would be used. This prevents ambiguities when there are multiple
    // Services on port 80 referring to different target ports. Long term, this will be replaced by
    // Gateways directly referencing a Service, rather than label selectors. Warning: this label is
    // intended solely for as a workaround for Knative's Istio integration, and not intended for any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. RELEASE.md

        *   `tf.contrib.distributions.MultivariateNormalFull` replaced by
            `tf.contrib.distributions.MultivariateNormalTriL`.
        *   `tf.contrib.distributions.MultivariateNormalCholesky` replaced by
            `tf.contrib.distributions.MultivariateNormalTriL`
        *   `tf.contrib.distributions.MultivariateNormalDiagWithSoftplusStDev`
            replaced by
            `tf.contrib.distributions.MultivariateNormalDiagWithSoftplusScale`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle.go

    	}
    	var tasks int
    	for _, wrkr := range *w {
    		tasks += len(wrkr)
    	}
    	return tasks
    }
    
    // enqueueTierJournalEntry enqueues a tier journal entry referring to a remote
    // object corresponding to a 'replaced' object versions. This applies only to
    // non-versioned or version suspended buckets.
    func (es *expiryState) enqueueTierJournalEntry(je jentry) {
    	wrkr := es.getWorkerCh(je.OpHash())
    	if wrkr == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

              "NeedEncap":  true
            }
          }
        }
      ]
    }'.replace('POD_CIDR', ${env:POD_CIDR}).`
      replace('POD_GATEWAY', ${pod_gateway}).`
      replace('DNS_SERVER_IP', ${kube_env}['DNS_SERVER_IP']).`
      replace('DNS_DOMAIN', ${kube_env}['DNS_DOMAIN']).`
      replace('MGMT_IP', ${mgmt_ip}).`
      replace('SERVICE_CIDR', ${kube_env}['SERVICE_CLUSTER_IP_RANGE'])
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let arguments = (ins
        TF_VariantTensor:$input_dataset,
        Arg<TF_Int64Tensor, [{A scalar representing the number of times that `input_dataset` should
    be repeated. A value of `-1` indicates that it should be repeated infinitely.}]>:$count,
    
        ConfinedAttr<TypeArrayAttr, [ArrayMinCount<1>]>:$output_types,
        ConfinedAttr<TF_ShapeAttrArray, [ArrayMinCount<1>]>:$output_shapes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. cmd/api-response.go

    }
    
    // Metadata metadata items implemented to ensure XML marshaling works.
    type Metadata struct {
    	Items []struct {
    		Key   string
    		Value string
    	}
    }
    
    // Set add items, duplicate items get replaced.
    func (s *Metadata) Set(k, v string) {
    	for i, item := range s.Items {
    		if item.Key == k {
    			s.Items[i] = struct {
    				Key   string
    				Value string
    			}{
    				Key:   k,
    				Value: v,
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // to -f '{{.String}}'.
    //
    // Note that when a module has been replaced, its Replace field
    // describes the replacement module, and its Dir field is set to
    // the replacement's source code, if present. (That is, if Replace
    // is non-nil, then Dir is set to Replace.Dir, with no access to
    // the replaced source code.)
    //
    // The -u flag adds information about available upgrades.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    	// Storage class is special, it can be replaced regardless of the
    	// metadata directive, if set should be preserved and replaced
    	// to the destination metadata.
    	sc := r.Header.Get(xhttp.AmzStorageClass)
    	if sc == "" {
    		sc = r.Form.Get(xhttp.AmzStorageClass)
    	}
    
    	// if x-amz-metadata-directive says REPLACE then
    	// we extract metadata from the input headers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    //
    //	1 Integration tests
    //	2 Kubelet binary
    //	3 Standalone 'kubernetes' binary
    //
    // Eventually, #2 will be replaced with instances of #3
    func RunKubelet(ctx context.Context, kubeServer *options.KubeletServer, kubeDeps *kubelet.Dependencies, runOnce bool) error {
    	hostname, err := nodeutil.GetHostname(kubeServer.HostnameOverride)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top