Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 447 for attacher (0.28 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/Destroys.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying a file or directory that a task destroys.
     * The file or directory belongs to another task.</p>
     *
     * <p>This annotation should be attached to the getter method or the field for the property.</p>
     *
     * <p>This will cause the task to have exclusive access to this file or directory while running.  This means
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 03:14:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/init_windows.go

    	fs.StringVar(&o.config.Winkernel.RootHnsEndpointName, "root-hnsendpoint-name", "cbr0", "The name of the hns endpoint name for root namespace attached to l2bridge")
    	fs.BoolVar(&o.config.Winkernel.ForwardHealthCheckVip, "forward-healthcheck-vip", o.config.Winkernel.ForwardHealthCheckVip, "If true forward service VIP for health check port")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	volumetesting "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // Calls AddNode() once.
    // Verifies node exists, and zero volumes to attach.
    func Test_AddNode_Positive_NewNode(t *testing.T) {
    	// Arrange
    	volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t)
    	dsw := NewDesiredStateOfWorld(volumePluginMgr)
    	nodeName := k8stypes.NodeName("node-name")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

         */
        List<ProblemLocation> getLocations();
    
        /**
         * The exception that caused the problem.
         */
        @Nullable
        RuntimeException getException();
    
        /**
         * Additional data attached to the problem.
         * <p>
         * The supported types are listed on {@link AdditionalData}.
         */
        @Nullable
        AdditionalData getAdditionalData();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

          Region* region = node->getCallableRegion();
          GetOrCreateAnalysis(*region);
        }
      }
    
      // This above call graph analysis will cover all regions attached to functions
      // but we also need to analyze regions attached to other ops.
      module->walk([this](Operation* op) {
        if (op->hasTrait<OpTrait::NoTerminator>()) return;
        for (Region& region : op->getRegions()) GetOrCreateAnalysis(region);
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

          label: Steps to Reproduce
          description: |
            Provide a [minimal, self-contained example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) project demonstrating the problem as a GitHub repository or an attached archive.
            You can use [the template](https://github.com/gradle/gradle-issue-reproducer) with a Gradle GitHub action set up to showcase your problem.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CalculatedValueContainerCodec.kt

                val available = readBoolean()
                if (available) {
                    val value = read()
                    // TODO - restore the correct display name when the container is attached to its owner (rather than writing the display name to the cache)
                    calculatedValueContainerFactory.create(Describables.of("unknown value"), value as Any)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

         */
        boolean isPropertyRelevant();
    
        /**
         * Visit the value of a property with this annotation attached.
         */
        void visitPropertyValue(String propertyName, PropertyValue value, PropertyMetadata propertyMetadata, PropertyVisitor visitor);
    
        /**
         * Visits problems associated with the given property, if any.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/crypto/rsa/pkcs1v15.go

    // The random parameter is legacy and ignored, and it can be nil.
    //
    // Note that whether this function returns an error or not discloses secret
    // information. If an attacker can cause this function to run repeatedly and
    // learn whether each instance returned an error then they can decrypt and
    // forge signatures as if they had the private key. See
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/gateway-api-crd.yaml

                        implementations.
    
    
                        For example, in BackendTLSPolicy, the Policy attaches to a Service that is
                        used as a backend in a HTTPRoute that is itself attached to a Gateway.
                        In this case, the relevant object for status is the Gateway, and that is the
                        ancestor object referred to in this status.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top