Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,460 for Updater (0.17 sec)

  1. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"name":"Score Updater","target":"all","cronExpression":"0 * * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"scoreUpdater\").execute();","jobLogging":false,"crawler":false,"available":true,"sortOrder":10,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}
    {"index":{"_index":"fess_config.scheduled_job","_id":"label_updater"}}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            then:
            1 * watcher.startWatching({ equalIgnoringOrder(it, [firstDir]) })
            0 * _
    
            when:
            updater.triggerWatchProbe(watchProbeFor(secondDir).absolutePath)
            updater.triggerWatchProbe(watchProbeFor(firstDir).absolutePath)
            updater.triggerWatchProbe(watchProbeFor(directoryWithinFirst).absolutePath)
            then:
            0 * _
    
            when:
            buildFinished()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	return nil
    }
    
    // Updater is an object that can update an instance of a RESTful object.
    type Updater interface {
    	// New returns an empty object that can be used with Update after request data has been put into it.
    	// This object must be a pointer type for use with Codec.DecodeInto([]byte, runtime.Object)
    	New() runtime.Object
    
    	// Update finds a resource in the storage and updates it. Some implementations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. .bazelignore

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    # The requirements updater has its own WORKSPACE file
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 776 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfieldsupdater_test.go

    	managed, err := internal.DecodeManagedFields(accessor.GetManagedFields())
    	if err != nil {
    		t.Fatalf("failed to decode managed fields: %v", err)
    	}
    
    	updater := internal.NewManagedFieldsUpdater(NoopManager{})
    
    	newObject, _, err := updater.Apply(obj, obj.DeepCopyObject(), managed, "some_manager", false)
    	if err != nil {
    		t.Fatalf("failed to apply configuration %v", err)
    	}
    
    	if newObject == obj {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objectMeta.SetName(t.namer(1))
    	objectMeta.SetNamespace("not-default")
    
    	obj, updated, err := t.storage.(rest.Updater).Update(t.TestContext(), "foo1", rest.DefaultUpdatedObjectInfo(storedFoo), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    	if obj != nil || updated {
    		t.Errorf("expected nil object and not updated")
    	}
    	if err == nil {
    		t.Errorf("expected an error, but didn't get one")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        if (id == 'hide') param = 'h';
        if (id == 'show') param = 's';
        if (id == 'show-from') param = 'sf';
    
        // We update on mouseenter so middle-click/right-click work properly.
        elem.addEventListener('mouseenter', updater);
        elem.addEventListener('touchstart', updater);
    
        function updater() {
          // The selection can be in one of two modes: regexp-based or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    		logger.V(4).Info("Report volume as attached to node", "node", klog.KRef("", string(nodeName)), "volumeName", volumeName)
    	}
    }
    
    // Update the flag statusUpdateNeeded to indicate whether node status is already updated or
    // needs to be updated again by the node status updater.
    // If the specified node does not exist in the nodesToUpdateStatusFor list, log the error and return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Updater for hierarchical file watchers.
     *
     * For hierarchical watchers, we can use the registered watchable hierarchies as watched directories.
     * Build root directories are always watchable hierarchies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top