Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,172 for attacher (0.13 sec)

  1. CHANGELOG/CHANGELOG-1.7.md

    * Bug fixes
    
      * Fixes issue with Flexvolume, introduced in 1.6.0, where drivers without an attacher would fail (node indefinitely waiting for attach). A driver API addition is introduced: drivers that don't implement attach should return attach: false on init. ([#47503](https://github.com/kubernetes/kubernetes/pull/47503), [@chakri-nelluri](https://github.com/chakri-nelluri))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/FallbackConsoleMetaData.java

        ATTACHED(true),
        NOT_ATTACHED(false);
    
        private final boolean attached;
    
        FallbackConsoleMetaData(boolean attached) {
            this.attached = attached;
        }
    
        @Override
        public boolean isStdOut() {
            return attached;
        }
    
        @Override
        public boolean isStdErr() {
            return attached;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    // Add the second argument to the first argument, which is expected to be an
    // argument list.
    // Used to attach bias to einsum argument list.
    SmallVector<Value> AppendToVector(ArrayRef<Value> arguments, Value append);
    
    // Checks if the `Method` attatched to the given `tf.XlaCallModule` op has
    // `WeightOnlyPtq`.
    bool HasWeightOnlyPtqMethod(TF::XlaCallModuleOp xla_call_module_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/attaches-to-abc-foo-example-com-with-hostname-intersection.gateway-conformance-infra
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: attaches-to-abc-foo-example-com-with-hostname-intersection-0-istio-autogenerated-k8s-gateway
      namespace: gateway-conformance-infra
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java

        }
    
        public List<ArtifactVersion> getAvailableVersions() {
            return parent.getAvailableVersions();
        }
    
        public void setAvailableVersions(List<ArtifactVersion> availableVersions) {
            throw new UnsupportedOperationException("Cannot change the version information for an attached artifact."
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/ConsoleOutput.java

         */
        Plain,
        /**
         * Enable color and rich output when the current process is attached to a console, disable when not attached to a console.
         */
        Auto,
        /**
         * Enable color and rich output, regardless of whether the current process is attached to a console or not.
         * When not attached to a console, the color and rich output is encoded using ANSI control characters.
         */
        Rich,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	operationexecutor.ActualStateOfWorldAttacherUpdater
    
    	// AddVolumeNode adds the given volume and node to the underlying store.
    	// If attached is set to true, it indicates the specified volume is already
    	// attached to the specified node. If attached set to false, it means that
    	// the volume is not confirmed to be attached to the node yet.
    	// A unique volume name is generated from the volumeSpec and returned on
    	// success.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

                shouldBePublished() >> true
            }
            notationParser.parseNotation("attached") >> attachedMavenArtifact
            attachedMavenArtifact.extension >> "jar"
    
            and:
            def publication = createPublication()
            publication.artifact("artifact")
            publication.artifact("attached")
            publication.pom.packaging = "ext"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            1 * loggingRouter.removeOutputEventListener(listener)
    
            when:
            loggingManager.stop()
    
            then:
            0 * loggingRouter.removeOutputEventListener(listener)
        }
    
        def "attaches process console on start and restores on stop"() {
            def snapshot = Stub(LoggingSystem.Snapshot)
    
            loggingManager.attachProcessConsole(ConsoleOutput.Auto)
    
            when:
            loggingManager.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ConsoleAttachment.java

    public enum ConsoleAttachment {
        NOT_ATTACHED("not attached to a console", null),
        ATTACHED("console attached to both stdout and stderr", TestConsoleMetadata.BOTH),
        ATTACHED_STDOUT_ONLY("console attached to stdout only", TestConsoleMetadata.STDOUT_ONLY),
        ATTACHED_STDERR_ONLY("console attached to stderr only", TestConsoleMetadata.STDERR_ONLY);
    
        private final String description;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top