Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 572 for addLine (0.27 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    // Package v1beta3 defines the v1beta3 version of the kubeadm configuration file format.
    // This version improves on the v1beta2 format by fixing some minor issues and adding a few new fields.
    //
    // A list of changes since v1beta2:
    //   - The deprecated "ClusterConfiguration.useHyperKubeImage" field has been removed.
    //     Kubeadm no longer supports the hyperkube image.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K 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. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

                        bar(type: "CustomLanguageSourceSet")
                        someLang(type: "CustomLanguageSourceSet")
                    }
                }
            }
        }
    
        def "reasonable error message when adding element to map using its default implementation"() {
            when:
            buildFile << """
            interface UnmanagedComponent extends ComponentSpec {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

     *          metaclass for call interception.
     *     <li> Overrides {@link Closure#setDelegate}, adding a call to {@link InstrumentedGroovyMetaClassHelper#addInvocationHooksInClosureDispatchObject} with
     *          the new delegate. This ensures the invariant above.
     *     <li> Adds {@link InstrumentableClosure} to the set of interfaces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

    // performs in-function propagation, as well as cross-function propagation from
    // callers to callees.
    //
    // This pass changes the module by adding "tf.device" attribute to function
    // arguments and adding "device" attribute to TF ops.
    struct ResourceDeviceInference
        : public impl::ResourceDeviceInferencePassBase<ResourceDeviceInference> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. guava/src/com/google/common/graph/DirectedGraphConnections.java

            if (that instanceof Pred) {
              return this.node.equals(((Pred<?>) that).node);
            } else {
              return false;
            }
          }
    
          @Override
          public int hashCode() {
            // Adding the class hashCode to avoid a clash with Succ instances.
            return Pred.class.hashCode() + node.hashCode();
          }
        }
    
        static final class Succ<N> extends NodeConnection<N> {
          Succ(N node) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controlplane/controller/kubernetesservice/controller_test.go

    			serviceStore := serviceInformer.GetIndexer()
    			err := serviceStore.Add(test.service)
    			if err != nil {
    				t.Fatalf("unexpected error adding service %v to the store: %v", test.service, err)
    			}
    			master.serviceLister = v1listers.NewServiceLister(serviceStore)
    			master.client = fakeClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top