Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for noexcept (0.21 sec)

  1. pkg/apis/extensions/v1beta1/conversion.go

    	out.CIDR = in.CIDR
    
    	out.Except = make([]string, len(in.Except))
    	copy(out.Except, in.Except)
    	return nil
    }
    
    func Convert_networking_IPBlock_To_v1beta1_IPBlock(in *networking.IPBlock, out *extensionsv1beta1.IPBlock, s conversion.Scope) error {
    	out.CIDR = in.CIDR
    
    	out.Except = make([]string, len(in.Except))
    	copy(out.Except, in.Except)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/LittleEndianDataInputStream.java

    /*
     * Copyright (C) 2007 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
     * in compliance with the License. You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software distributed under the License
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

    /*
     * Copyright (C) 2007 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
     * in compliance with the License. You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software distributed under the License
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java

            checkGroupIdScope(project, "provided", "maven-test-provided");
            artifact = getArtifact(project, "maven-test-provided", "scope-runtime");
            assertEquals("provided", artifact.getScope(), "Check scope");
    
            // check all transitive deps of a runtime dependency are runtime scope, except for test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. docs_src/path_operation_advanced_configuration/tutorial007.py

        },
    )
    async def create_item(request: Request):
        raw_body = await request.body()
        try:
            data = yaml.safe_load(raw_body)
        except yaml.YAMLError:
            raise HTTPException(status_code=422, detail="Invalid YAML")
        try:
            item = Item.model_validate(data)
        except ValidationError as e:
            raise HTTPException(status_code=422, detail=e.errors(include_url=False))
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 822 bytes
    - Viewed (0)
  6. docs_src/path_operation_advanced_configuration/tutorial007_pv1.py

        },
    )
    async def create_item(request: Request):
        raw_body = await request.body()
        try:
            data = yaml.safe_load(raw_body)
        except yaml.YAMLError:
            raise HTTPException(status_code=422, detail="Invalid YAML")
        try:
            item = Item.parse_obj(data)
        except ValidationError as e:
            raise HTTPException(status_code=422, detail=e.errors())
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 789 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/debuginfo/concrete_function_error.py

    
    def main(argv):
      if len(argv) > 1:
        raise app.UsageError('Too many command-line arguments.')
    
      try:
        TestGraphDebugInfo().testConcreteFunctionDebugInfo()
      except Exception as e:  # pylint: disable=broad-except
        sys.stdout.write('testConcreteFunctionDebugInfo')
        sys.stdout.write(str(e))
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb.py

    	except gdb.error:
    		pass
    
    
    def is_eface(val):
    	try:
    		return str(val['_type'].type) == "struct runtime._type *" and str(val['data'].type) == "void *"
    	except gdb.error:
    		pass
    
    
    def lookup_type(name):
    	try:
    		return gdb.lookup_type(name)
    	except gdb.error:
    		pass
    	try:
    		return gdb.lookup_type('struct ' + name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

          break
    
        try:
          arg_name = func_match.group(1)
          arg_values = ast.literal_eval(func_match.group(2))
          loop_template = string.Template(func_match.group(3))
        except Exception as e:  # pylint: disable=broad-except
          raise ValueError('The loop template is in wrong format') from e
    
        replacement_text = ''
        for arg_value in arg_values:
          arg_dict = {arg_name: arg_value}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/debuginfo/saved_model_error.py

      if len(argv) > 1:
        raise app.UsageError('Too many command-line arguments.')
    
      try:
        TestGraphDebugInfo().testSavedModelDebugInfo()
      except Exception as e:  # pylint: disable=broad-except
        sys.stdout.write('testSavedModelDebugInfo')
        sys.stdout.write(str(e))
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top