Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 224 for capsule (0.12 sec)

  1. pkg/scheduler/framework/parallelize/error_channel.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package parallelize
    
    import "context"
    
    // ErrorChannel supports non-blocking send and receive operation to capture error.
    // A maximum of one error is kept in the channel and the rest of the errors sent
    // are ignored, unless the existing error is received and the channel becomes empty
    // again.
    type ErrorChannel struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 17:39:23 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeCapture.java

    /**
     * Captures the actual type of {@code T}.
     *
     * @author Ben Yu
     */
    @ElementTypesAreNonnullByDefault
    abstract class TypeCapture<T> {
    
      /** Returns the captured type. */
      final Type capture() {
        Type superclass = getClass().getGenericSuperclass();
        checkArgument(superclass instanceof ParameterizedType, "%s isn't parameterized", superclass);
        return ((ParameterizedType) superclass).getActualTypeArguments()[0];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/TypeCapture.java

    /**
     * Captures the actual type of {@code T}.
     *
     * @author Ben Yu
     */
    @ElementTypesAreNonnullByDefault
    abstract class TypeCapture<T> {
    
      /** Returns the captured type. */
      final Type capture() {
        Type superclass = getClass().getGenericSuperclass();
        checkArgument(superclass instanceof ParameterizedType, "%s isn't parameterized", superclass);
        return ((ParameterizedType) superclass).getActualTypeArguments()[0];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/util.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package capture
    
    func CombineMatchers(values []string, matcher func(value string) []string) []string {
    	matchers := make([][]string, 0, len(values))
    	for _, value := range values {
    		matchers = append(matchers, matcher(value))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 997 bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/run_unspecified.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    package capture
    
    import (
    	"errors"
    
    	"istio.io/istio/tools/istio-iptables/pkg/config"
    )
    
    // ErrNotImplemented is returned when a requested feature is not implemented.
    var ErrNotImplemented = errors.New("not implemented")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 16:18:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-value-attr.pbtxt

        attr {
          key: "_input_shapes"
          value {
          }
        }
      }
    }
    versions {
      producer: 85
      min_consumer: 12
    }
    
    # Match partitioned call in main and capture the callee name.
    # CHECK-LABEL: func @main
    # CHECK: tf.PartitionedCall
    # CHECK-SAME: f = @[[FUNCTION:[a-zA-Z0-9_]*]]
    
    # Verify that callee has the unit attribute tf._input_shapes.
    # CHECK: func private @[[FUNCTION]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  7. releasenotes/notes/35480-ext-authz.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    
    issue:
      - https://github.com/istio/istio/issues/35480#issuecomment-952420951
    
    releaseNotes:
      - |
        **Fixed** a copule of issues in the ext-authz filter affecting the behavior of the gRPC check response API. Please
        see the [Envoy release note](https://www.envoyproxy.io/docs/envoy/latest/version_history/v1.20.0#bug-fixes) for more
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 02 22:38:15 UTC 2021
    - 520 bytes
    - Viewed (0)
  8. hack/boilerplate/boilerplate_test.py

        def test_boilerplate(self):
            os.chdir("test/")
    
            class Args:
                filenames = []
                rootdir = "."
                boilerplate_dir = "../"
                verbose = True
    
            # capture stdout
            old_stdout = sys.stdout
            sys.stdout = StringIO()
    
            boilerplate.args = Args
            ret = boilerplate.main()
            self.assertEqual(ret, 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 09:05:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/CommonFileSystemTest.groovy

        }
    
        private static maybeRoundLastModified(long lastModified) {
            // Some Java 8 versions on Unix only capture the seconds in lastModified, so we cut off the milliseconds returned from the filesystem as well.
            // For example, Oracle JDK 1.8.0_181-b13 does not capture milliseconds, while OpenJDK 1.8.0_242-b08 does.
            return (JavaVersion.current().java9Compatible || OperatingSystem.current().windows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/bug_report.md

    <!--- reproduce this bug. Include code to reproduce, if relevant -->
    <!--- and make sure you have followed https://github.com/minio/minio/tree/release/docs/debugging to capture relevant logs -->
    
    1.
    2.
    3.
    4.
    
    ## Context
    <!--- How has this issue affected you? What are you trying to accomplish? -->
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 20 17:37:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top