Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 433 for addLink (0.15 sec)

  1. pkg/scheduler/util/assumecache/assume_cache.go

    			return
    		}
    
    		// Only update object if version is newer.
    		// This is so we don't override assumed objects due to informer resync.
    		if newVersion <= storedVersion {
    			c.logger.V(10).Info("Skip adding object to assume cache because version is not newer than storedVersion", "description", c.description, "cacheKey", name, "newVersion", newVersion, "storedVersion", storedVersion)
    			return
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

        @Override
        public boolean add(Task o) {
            throw new UnsupportedOperationException("Adding a task directly to the task container is not supported.  Use register() instead.");
        }
    
        @Deprecated
        @Override
        public boolean addAll(Collection<? extends Task> c) {
            throw new UnsupportedOperationException("Adding a collection of tasks directly to the task container is not supported.  Use register() instead.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. cni/pkg/ipset/ipset.go

    // and iptables will be smart enough to pick the correct underlying set (v4 or v6, based on context),
    // reducing the # of rules we need.
    //
    // BUT netlink lib doesn't support adding things to `list:set` types yet, and current tagged release
    // doesn't support creating `list:set` types yet (is in main branch tho).
    // So this will actually create 2 underlying ipsets, one for v4 and one for v6
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

    namespace detail {
    
    inline LogicalResult verifyIsIdempotent(Operation* op) {
      // TODO(b/246518997): Add back check for no side effects on operation.
      // Currently adding it would cause the shared library build
      // to fail since there would be a dependency of IR on SideEffectInterfaces
      // which is cyclical.
      return success();
    }
    
    inline OpFoldResult foldIdempotent(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    If you did not have a Java 11 SDK installed before importing the project into IntelliJ and after adding a Java 11 SDK your IntelliJ still uses the wrong SDK version, you might need to invalidate IntelliJ's caches before reloading the project.
    
    ## Making your change
    
    ### Code change guidelines
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    You can provide configuration for your plugin by adding an extension object to this container.
    
    An extension object is simply an object with Java Bean properties representing the configuration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            return new DependencyState(md, resolveState.getComponentSelectorConverter());
        }
    
        /**
         * Iterate over the dependencies originating in this node, adding them either as a 'pending' dependency
         * or adding them to the `discoveredEdges` collection (and `this.outgoingEdges`)
         */
        private void visitDependencies(ExcludeSpec resolutionFilter, Collection<EdgeState> discoveredEdges) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // Package v1beta4 defines the v1beta4 version of the kubeadm configuration file format.
    // This version improves on the v1beta3 format by fixing some minor issues and adding a few new fields.
    //
    // A list of changes since v1beta3:
    //
    //   - TODO https://github.com/kubernetes/kubeadm/issues/2890
    //   - Support custom environment variables in control plane components under `ClusterConfiguration`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            val valueContainer = currentValues.computeIfAbsent(key) { k ->
                createContainer(k, creator)
            }
    
            // Calculate the value after adding the entry to the map, so that the value container can take care of thread synchronization
            valueContainer.finalizeIfNotAlready()
            return valueContainer.get()
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. cmd/bucket-notification-handlers.go

    		arnErr, ok := err.(*event.ErrARNNotFound)
    		if ok {
    			for i, queue := range config.QueueList {
    				// Remove ARN not found queues, because we previously allowed
    				// adding unexpected entries into the config.
    				//
    				// With newer config disallowing changing / turning off
    				// notification targets without removing ARN in notification
    				// configuration we won't see this problem anymore.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top