Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,438 for Updatef (0.16 sec)

  1. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

        public synchronized void insert(final SynonymItem item) {
            try (SynonymUpdater updater = new SynonymUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
        public synchronized void update(final SynonymItem item) {
            try (SynonymUpdater updater = new SynonymUpdater(item)) {
                reload(updater);
            }
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. pkg/registry/core/replicationcontroller/storage/storage_test.go

    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		// continuously submits a patch that updates a label and verifies the label update was effective
    		labelName := "timestamp"
    		for i := 0; ; i++ {
    			select {
    			case <-stopCh:
    				return
    			default:
    				expectedLabelValue := fmt.Sprint(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    		}
    		// When GetVolumesToReportAttached is called by node status updater, the current status
    		// of this node will be updated, so set the flag statusUpdateNeeded to false indicating
    		// the current status is already updated.
    		if err := asw.updateNodeStatusUpdateNeeded(nodeName, false); err != nil {
    			logger.Error(err, "Failed to update statusUpdateNeeded field when getting volumes")
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. pkg/config/mesh/kubemesh/watcher_test.go

    	steps := []struct {
    		added   *v1.ConfigMap
    		updated *v1.ConfigMap
    		deleted *v1.ConfigMap
    
    		expect *meshconfig.MeshConfig
    	}{
    		{expect: mesh.DefaultMeshConfig()},
    		{added: cm, expect: m},
    
    		// Handle misconfiguration errors.
    		{updated: badCM, expect: m},
    		{updated: cm, expect: m},
    		{updated: badCM2, expect: m},
    		{updated: badCM, expect: m},
    		{updated: cm, expect: m},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    		apiVersion string
    		validation bool
    	}{
    		"policy/v1beta1 should not do update validation": {
    			apiVersion: "v1beta1",
    			validation: false,
    		},
    		"policy/v1 should do update validation": {
    			apiVersion: "v1",
    			validation: true,
    		},
    		"policy/some-version should do update validation": {
    			apiVersion: "some-version",
    			validation: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. ci/official/wheel_test/README.md

    2. Creates a `requirements_wheel_test.in` file and specifies the path
    to the actual TensorFlow wheel.
    3. Creates a `requirements_lock_<python_version>.txt` file.
    4. Updates the `requirements_lock_<python_version>.txt` file using
    a Bazel command.
    5. Moves the updated `requirements_lock_<python_version>.txt` file
    to the `../wheel_test/` directory.
    
    
    ### How it Works in the Presubmit Job
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config_test.go

    			if podsDifferSemantically(expected[i].Pods[j], update.Pods[j]) || !reflect.DeepEqual(expected[i].Pods[j].Status, update.Pods[j].Status) {
    				t.Fatalf("Expected %#v, Got %#v", expected[i].Pods[j], update.Pods[j])
    			}
    		}
    	}
    	expectNoPodUpdate(t, ch)
    }
    
    func expectNoPodUpdate(t *testing.T, ch <-chan kubetypes.PodUpdate) {
    	select {
    	case update := <-ch:
    		t.Errorf("Expected no update in channel, Got %#v", update)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/util/stats.go

    type Stats struct {
    	// Update Stats.
    	CDSUpdatesSuccess   uint64
    	CDSUpdatesRejection uint64
    	LDSUpdatesSuccess   uint64
    	LDSUpdatesRejection uint64
    	// Server State of Envoy.
    	ServerState    uint64
    	WorkersStarted uint64
    }
    
    // String representation of the Stats.
    func (s *Stats) String() string {
    	return fmt.Sprintf("cds updates: %d successful, %d rejected; lds updates: %d successful, %d rejected",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	update := gottenObj.(*unstructured.Unstructured)
    	updateContent := update.Object
    	updateContent["status"] = map[string]interface{}{
    		"replicas": int64(7),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. src/internal/godebug/godebug.go

    func setNewIncNonDefault(newIncNonDefault func(string) func())
    
    func init() {
    	setUpdate(update)
    	setNewIncNonDefault(newIncNonDefault)
    }
    
    func newIncNonDefault(name string) func() {
    	s := New(name)
    	s.Value()
    	return s.IncNonDefault
    }
    
    var updateMu sync.Mutex
    
    // update records an updated GODEBUG setting.
    // def is the default GODEBUG setting for the running binary,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top