Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 519 for recognizers (0.15 sec)

  1. cluster/addons/calico-policy-controller/ipamhandle-crd.yaml

        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Splitter.java

       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailureDetails.java

         */
        String getStacktrace();
    
        /**
         * Returns true if the represented failure is recognized as an assertion failure.
         *
         * @return {@code true} for assertion failures
         */
        boolean isAssertionFailure();
    
        /**
         * Returns true if the represented failure is recognized as a file comparison failure.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/link/cgo_test.go

    		// These errors come from GCC or clang, not Go.
    		var noLTO = []string{
    			`unrecognized command line option "-flto"`,
    			"unable to pass LLVM bit-code files to linker",
    			"file not recognized: File format not recognized",
    			"LTO support has not been enabled",
    			"linker command failed with exit code",
    			"gcc: can't load library",
    		}
    		for _, msg := range noLTO {
    			if bytes.Contains(out, []byte(msg)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 22:13:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. cluster/addons/calico-policy-controller/networkset-crd.yaml

            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/go/doc/testdata/a0.go

    // emacs modes that remove trailing whitespace).
    //NOTE(uid):
    
    // SECBUG(uid): sec hole 0
    // need to fix asap
    
    // Multiple notes may be in the same comment group and should be
    // recognized individually. Notes may start in the middle of a
    // comment group as long as they start at the beginning of an
    // individual comment.
    //
    // NOTE(foo): 1 of 4 - this is the first line of note 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  7. src/math/big/floatconv.go

    // underscores do not change the value of the number, or the returned
    // digit count. Incorrect placement of underscores is reported as an
    // error if there are no other errors. If base != 0, underscores are
    // not recognized and thus terminate scanning like any other character
    // that is not a valid radix point or digit.
    //
    // It sets z to the (possibly rounded) value of the corresponding floating-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          else:
            raise NotImplementedError('USub type not recognized: ' + str(ty))
          return ssa_value, ty
        raise NotImplementedError('USub operator not recognized')
    
      def visit_For(self, node):
        raise NotImplementedError('For operator not recognized')
    
      def visit_While(self, node):
        raise NotImplementedError('While operator not recognized')
    
      def visit_Try(self, node):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                are non-namespaced
              properties:
                apiVersion:
                  description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                  type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/ElementTypesAreNonnullByDefault.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top