Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for noexcept (0.35 sec)

  1. tensorflow/compiler/mlir/lite/metrics/types_util.h

    // The hash function for mlir::Location.
    struct LocationHash {
      std::size_t operator()(const Location& v) const noexcept {
        return hash_value(v);
      }
    };
    
    // The hash function for ConverterErrorData.
    struct ConverterErrorDataHash {
      std::size_t operator()(
          const tflite::metrics::ConverterErrorData& v) const noexcept {
        std::size_t hash_result = std::hash<std::string>{}(v.error_message());
        if (v.has_subcomponent()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 16:09:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			st.advance(1)
    			expr := st.expression()
    			var noexcept bool
    			if len(st.str) > 0 && st.str[0] == 'N' {
    				st.advance(1)
    				noexcept = true
    			}
    			var typeReq AST
    			if len(st.str) > 0 && st.str[0] == 'R' {
    				st.advance(1)
    				typeReq, _ = st.name()
    			}
    			req = &ExprRequirement{
    				Expr:     expr,
    				Noexcept: noexcept,
    				TypeReq:  typeReq,
    			}
    
    		case 'T':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    type ExprRequirement struct {
    	Expr     AST
    	Noexcept bool
    	TypeReq  AST
    }
    
    func (er *ExprRequirement) print(ps *printState) {
    	ps.writeByte(' ')
    	if er.Noexcept || er.TypeReq != nil {
    		ps.startScope('{')
    	}
    	ps.print(er.Expr)
    	if er.Noexcept || er.TypeReq != nil {
    		ps.endScope('}')
    	}
    	if er.Noexcept {
    		ps.writeString(" noexcept")
    	}
    	if er.TypeReq != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.cc

              "if",
              "import",
              "inline",
              "int",
              "long",
              "module",
              "mutable",
              "namespace",
              "new",
              "noexcept",
              "not",
              "not_eq",
              "nullptr",
              "operator",
              "or",
              "or_eq",
              "override",
              "private",
              "protected",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. api/except.txt

    Filippo Valsorda <******@****.***> 1684886145 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. tests/test_dependency_normal_exceptions.py

    fake_database = initial_fake_database.copy()
    
    initial_state = {"except": False, "finally": False}
    
    state = initial_state.copy()
    
    app = FastAPI()
    
    
    async def get_database():
        temp_database = fake_database.copy()
        try:
            yield temp_database
            fake_database.update(temp_database)
        except HTTPException:
            state["except"] = True
            raise
        finally:
            state["finally"] = True
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/strconv/makeisprint.go

    		return false
    	}
    	_, found := slices.BinarySearch(except, rr)
    	return !found
    }
    
    func scan(min, max rune) (rang, except []uint32) {
    	lo := rune(-1)
    	for i := min; ; i++ {
    		if (i > max || !unicode.IsPrint(i)) && lo >= 0 {
    			// End range, but avoid flip flop.
    			if i+1 <= max && unicode.IsPrint(i+1) {
    				except = append(except, uint32(i))
    				continue
    			}
    			rang = append(rang, uint32(lo), uint32(i-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:56:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/config/types.go

    }
    
    func InterceptAllExcept(values ...string) InterceptFilter {
    	return InterceptFilter{
    		Values: values,
    		Except: true,
    	}
    }
    
    func InterceptOnly(values ...string) InterceptFilter {
    	return InterceptFilter{
    		Values: values,
    		Except: false,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 15:43:38 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/LittleEndianDataOutputStream.java

       * Writes a char as specified by {@link DataOutputStream#writeChar(int)}, except using
       * little-endian byte order.
       *
       * @throws IOException if an I/O error occurs
       */
      @Override
      public void writeChar(int v) throws IOException {
        writeShort(v);
      }
    
      /**
       * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except
       * each character is written using little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/LittleEndianDataOutputStream.java

       * Writes a char as specified by {@link DataOutputStream#writeChar(int)}, except using
       * little-endian byte order.
       *
       * @throws IOException if an I/O error occurs
       */
      @Override
      public void writeChar(int v) throws IOException {
        writeShort(v);
      }
    
      /**
       * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except
       * each character is written using little-endian byte order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top