Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 279 for Updatef (0.11 sec)

  1. pilot/pkg/xds/delta.go

    			Unsubscribed: sets.New(req.ResourceNamesUnsubscribe...).Delete("*"),
    		},
    	}
    	// SidecarScope for the proxy may has not been updated based on this pushContext.
    	// It can happen when `processRequest` comes after push context has been updated(s.initPushContext),
    	// but before proxy's SidecarScope has been updated(s.updateProxy).
    	if con.proxy.SidecarScope != nil && con.proxy.SidecarScope.Version != request.Push.PushVersion {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/certcontroller.go

    	if features.MultiRootMesh {
    		// Trigger trust anchor update, this will send PCDS to all sidecars.
    		log.Infof("Update trust anchor with new root cert")
    		err = s.workloadTrustBundle.UpdateTrustAnchor(&tb.TrustAnchorUpdate{
    			TrustAnchorConfig: tb.TrustAnchorConfig{Certs: []string{string(caBundle)}},
    			Source:            tb.SourceIstioCA,
    		})
    		if err != nil {
    			log.Errorf("failed to update trust anchor from source Istio CA, err: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    == Selectively updating lock state entries
    
    In order to update only specific modules of a configuration, you can use the `--update-locks` command line flag.
    It takes a comma (`,`) separated list of module notations.
    In this mode, the existing lock state is still used as input to resolution, filtering out the modules targeted by the update.
    
    ----
    ❯ gradle dependencies --update-locks org.apache.commons:commons-lang3,org.slf4j:slf4j-api
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeScatterNd : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
        (CreateTFCastToInt32Op $shape))>;
    
    def LegalizeScatterNdDefaultBadindicesPolicy : Pat<
      (TF_ScatterNdOp $indices, $updates, $shape, ConstantStrAttr<StrAttr, "DEFAULT">),
      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
        (CreateTFCastToInt32Op $shape))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          set.insert(result_and_idx.index());
        }
      }
      return set;
    }
    
    // Updates the tensorlist types based on the input index. If the tensorlist's
    // size isn't changed(which is indicated by `resized_tensor_list_index`), then
    // we will use the original operand's type, otherwise update it with the
    // unranked tensor type.
    template <typename R>
    void UpdateTensorListTypes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(example).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Update takes the representation of a example and updates it. Returns the server's representation of the example, and an error, if there is any.
    func (c *examples) Update(ctx context.Context, example *v1.Example, opts metav1.UpdateOptions) (result *v1.Example, err error) {
    	result = &v1.Example{}
    	err = c.client.Put().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err == nil {
    		t.Errorf("expected admission error on update")
    	}
    
    	// normal update and verify
    	if !updateAndVerify(t, testContext, registry, podB) {
    		t.Errorf("Unexpected error updating podB")
    	}
    
    	// unconditional update
    	// NOTE: The logic for unconditional updates doesn't make sense to me, and imho should be removed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Update takes the representation of a customResourceDefinition and updates it. Returns the server's representation of the customResourceDefinition, and an error, if there is any.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. cmd/xl-storage-disk-id-check.go

    }
    
    func (p *xlStorageDiskIDCheck) NSScanner(ctx context.Context, cache dataUsageCache, updates chan<- dataUsageEntry, scanMode madmin.HealScanMode, _ func() bool) (dataUsageCache, error) {
    	if contextCanceled(ctx) {
    		xioutil.SafeClose(updates)
    		return dataUsageCache{}, ctx.Err()
    	}
    
    	if err := p.checkDiskStale(); err != nil {
    		xioutil.SafeClose(updates)
    		return dataUsageCache{}, err
    	}
    
    	weSleep := func() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/istio_ca.go

    // If create/write(modified) event occurs, then it verifies that
    // newly introduced cacerts are intermediate CA which is generated
    // from cuurent root-cert.pem. Then it updates and keycertbundle
    // and generates new dns certs.
    func handleEvent(s *Server) {
    	log.Info("Update Istiod cacerts")
    
    	var newCABundle []byte
    	var err error
    
    	currentCABundle := s.CA.GetCAKeyCertBundle().GetRootCertPem()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top