Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for STR (0.36 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	} else if st.str[0] == 's' && len(st.str) > 1 && st.str[1] == 'P' {
    		st.advance(2)
    		var args []AST
    		for len(st.str) == 0 || st.str[0] != 'E' {
    			arg := st.templateArg(nil)
    			args = append(args, arg)
    		}
    		st.advance(1)
    		return &SizeofArgs{Args: args}
    	} else if st.str[0] == 'f' && len(st.str) > 1 && st.str[1] == 'p' {
    		st.advance(2)
    		if len(st.str) > 0 && st.str[0] == 'T' {
    			st.advance(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

                """
            ),
        ] = _Unset,
        # TODO: update when deprecating Pydantic v1, import these types
        # validation_alias: str | AliasPath | AliasChoices | None
        validation_alias: Annotated[
            Union[str, None],
            Doc(
                """
                'Whitelist' validation step. The parameter field will be the single one
                allowed by the alias or set of aliases defined.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        return in_placeholder, output_tensor
    
      def _create_and_save_vocab_table_lookup_model_tf1(
          self,
          output_path: str,
          tags: Collection[str],
          signature_def_key: str,
      ) -> Tuple[Mapping[str, core.Tensor], Mapping[str, core.Tensor]]:
        """Creates and saves a simple model that uses a vocab table.
    
        Args:
          output_path: Path to the directory to save the created model.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    			Float: 23.5,
    			Uint8: 255,
    			Bool:  true,
    			Str:   "str",
    			Bytes: []byte("byt"),
    		},
    		ExpectXML: `<AttrTest Int="8" int="9" Float="23.5" Uint8="255"` +
    			` Bool="true" Str="str" Bytes="byt"></AttrTest>`,
    	},
    	{
    		Value: &AttrTest{Bytes: []byte{}},
    		ExpectXML: `<AttrTest Int="0" int="0" Float="0" Uint8="0"` +
    			` Bool="false" Str="" Bytes=""></AttrTest>`,
    	},
    	{
    		Value: &AttrsTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        ret_type_list = []
        for ret_def in op_def.output_arg:
          if ret_def.number_attr or ret_def.type_list_attr:
            ret_type_list.append(str(TFRTypes.TENSOR_LIST))
          else:
            ret_type_list.append(str(TFRTypes.TENSOR))
    
        self.emit('{}) -> ({}) {{'.format(', '.join(arg_list),
                                          ', '.join(ret_type_list)))
        self.visit_block(node.body)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    		len  int
    		cap  int
    	}{(*byte)(unsafe.Pointer(&buf[0])), len(buf) * 2, cap(buf) * 2}
    	return *(*[]byte)(unsafe.Pointer(&sl))
    }
    
    func wcslen(str []uint16) int {
    	for i := 0; i < len(str); i++ {
    		if str[i] == 0 {
    			return i
    		}
    	}
    	return len(str)
    }
    
    // DeviceRegistryProperty method retrieves a specified Plug and Play device property.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // FullMatch(str, re) returns true iff regular expression re matches
      // the entire str.
      // PartialMatch(str, re) returns true iff regular expression re
      // matches a substring of str (including str itself).
      //
      // TODO(******@****.***): make FullMatch() and PartialMatch() work
      // when str contains NUL characters.
      static bool FullMatch(const ::std::string& str, const RE& re) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // FullMatch(str, re) returns true iff regular expression re matches
      // the entire str.
      // PartialMatch(str, re) returns true iff regular expression re
      // matches a substring of str (including str itself).
      //
      // TODO(******@****.***): make FullMatch() and PartialMatch() work
      // when str contains NUL characters.
      static bool FullMatch(const ::std::string& str, const RE& re) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                }
                str.append(':');
                str.append(ex.getLineNumber());
                str.append(':');
                str.append(ex.getColumnNumber());
    
                return str.toString();
    
            } // getLocationString(SAXParseException):String
    
            protected String getDefaultConf() {
                return defaultConf != null ? defaultConf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        private static String stripLeadingAndTrailingQuotes(String str) {
            final int length = str.length();
            if (length > 1
                    && str.startsWith("\"")
                    && str.endsWith("\"")
                    && str.substring(1, length - 1).indexOf('"') == -1) {
                str = str.substring(1, length - 1);
            }
    
            return str;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top